Change CanReadGdRomUsingSwapDisc to nullable.

This commit is contained in:
2020-07-10 20:29:47 +01:00
parent 7f755a12f9
commit 647ea6f0bf
7 changed files with 2480 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ namespace Aaru.Database.Models
[DefaultValue(0)]
public int OptimalMultipleSectorsRead { get; set; }
[DefaultValue(false)]
public bool CanReadGdRomUsingSwapDisc { get; set; }
[DefaultValue(null)]
public bool? CanReadGdRomUsingSwapDisc { get; set; }
}
}