Add database entry for optimal count of sectors for multiple read in devices.

This commit is contained in:
2019-01-03 16:55:15 +00:00
parent 38544897e5
commit cb1ed0450c
16 changed files with 1791 additions and 7 deletions

View File

@@ -31,6 +31,7 @@
// ****************************************************************************/
using System;
using System.ComponentModel;
using DiscImageChef.CommonTypes.Metadata;
namespace DiscImageChef.Database.Models
@@ -61,5 +62,8 @@ namespace DiscImageChef.Database.Models
}
public DateTime LastSynchronized { get; set; }
[DefaultValue(0)]
public int OptimalMultipleSectorsRead { get; set; }
}
}