mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add database entry for optimal count of sectors for multiple read in devices.
This commit is contained in:
@@ -58,7 +58,7 @@ namespace DiscImageChef.Dto
|
||||
Type = report.Type;
|
||||
}
|
||||
|
||||
public DeviceDto(DeviceReportV2 report, int id)
|
||||
public DeviceDto(DeviceReportV2 report, int id, int optimalMultipleSectorsRead)
|
||||
{
|
||||
ATA = report.ATA;
|
||||
ATAPI = report.ATAPI;
|
||||
@@ -148,9 +148,12 @@ namespace DiscImageChef.Dto
|
||||
|
||||
if(USB != null) USB.Descriptors = null;
|
||||
|
||||
Id = id;
|
||||
Id = id;
|
||||
OptimalMultipleSectorsRead = optimalMultipleSectorsRead;
|
||||
}
|
||||
|
||||
public int OptimalMultipleSectorsRead { get; set; }
|
||||
|
||||
public new int Id { get; set; }
|
||||
|
||||
static TestedMedia ClearBinaries(TestedMedia media)
|
||||
|
||||
Reference in New Issue
Block a user