refactor: moved development status to the rom object

This commit is contained in:
Michael Green
2023-02-21 10:12:23 +11:00
parent 0dcd720199
commit cb44f1a509
2 changed files with 9 additions and 8 deletions

View File

@@ -37,7 +37,6 @@ namespace gaseous_identifier.objects
public KeyValuePair<string, string> Country { get; set; }
public KeyValuePair<string, string> Language { get; set; }
public KeyValuePair<string, string> Copyright { get; set; }
public KeyValuePair<string, string> DevelopmentStatus { get; set; }
public List<Rom> Roms { get; set; } = new List<Rom>();
public enum DemoTypes
@@ -58,6 +57,8 @@ namespace gaseous_identifier.objects
public string? Md5 { get; set; }
public string? Sha1 { get; set; }
public KeyValuePair<string, string> DevelopmentStatus { get; set; }
public List<string> flags { get; set; } = new List<string>();
public RomTypes RomType { get; set; }