feat: added hashes of data source files

This commit is contained in:
Michael Green
2023-02-18 23:11:07 +11:00
parent 1a79850d37
commit bf18e4886d
2 changed files with 16 additions and 0 deletions

View File

@@ -19,6 +19,8 @@ namespace gaseous_identifier.objects
public string? Homepage { get; set; }
public Uri? Url { get; set; }
public string? SourceType { get; set; }
public string SourceMd5 { get; set; } = "";
public string SourceSHA1 { get; set; } = "";
public List<Game> Games { get; set; } = new List<Game>();