Add ability to get matching IDs from Redump

This commit is contained in:
Matt Nadareski
2019-05-14 01:46:10 -07:00
parent e61ca31a3f
commit 2787377250
11 changed files with 617 additions and 4 deletions

View File

@@ -100,6 +100,7 @@
public const string CRC32Field = "CRC32";
public const string MD5Field = "MD5";
public const string SHA1Field = "SHA1";
public const string MatchingIDsField = "Matching IDs";
public const string ErrorCountField = "Error Count";
public const string CuesheetField = "Cuesheet";
public const string SubIntentionField = "SubIntention Data (SecuROM/LibCrypt)";

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
@@ -240,5 +241,12 @@ namespace DICUI.Data
public string SHA1 { get; set; }
#endregion
#region Nonstandard Information
[JsonIgnore]
public List<int> MatchedIDs { get; set; }
#endregion
}
}