mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Change CanReadGdRomUsingSwapDisc to nullable.
This commit is contained in:
@@ -59,7 +59,7 @@ namespace Aaru.Dto
|
||||
GdRomSwapDiscCapabilities = report.GdRomSwapDiscCapabilities;
|
||||
}
|
||||
|
||||
public DeviceDto(DeviceReportV2 report, int id, int optimalMultipleSectorsRead, bool canReadGdRomUsingSwapDisc)
|
||||
public DeviceDto(DeviceReportV2 report, int id, int optimalMultipleSectorsRead, bool? canReadGdRomUsingSwapDisc)
|
||||
{
|
||||
ATA = report.ATA;
|
||||
ATAPI = report.ATAPI;
|
||||
@@ -172,7 +172,7 @@ namespace Aaru.Dto
|
||||
|
||||
public int OptimalMultipleSectorsRead { get; set; }
|
||||
|
||||
public bool CanReadGdRomUsingSwapDisc { get; set; }
|
||||
public bool? CanReadGdRomUsingSwapDisc { get; set; }
|
||||
|
||||
public new int Id { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user