Trurip finally gets integrated, more at 11

This commit is contained in:
Matt Nadareski
2026-04-04 15:17:58 -04:00
parent 12e1086838
commit d08427f1ba
11 changed files with 279 additions and 339 deletions

View File

@@ -1,4 +1,3 @@
namespace SabreTools.Data.Models.Metadata
{
/// <summary>
@@ -167,6 +166,38 @@ namespace SabreTools.Data.Models.Metadata
#endregion
#region From Trurip
// public string? CloneOf { get; set; }
public string? CRC { get; set; }
public string? Developer { get; set; }
public string? Enabled { get; set; }
public string? Genre { get; set; }
// public string? Players { get; set; }
// public string? Publisher { get; set; }
public string? Ratings { get; set; }
public string? RelatedTo { get; set; }
public string? Score { get; set; }
public string? Source { get; set; }
public string? Subgenre { get; set; }
public string? TitleID { get; set; }
// public string? Year { get; set; }
#endregion
#region Keys
/// <remarks>string, string[]</remarks>
@@ -175,11 +206,6 @@ namespace SabreTools.Data.Models.Metadata
/// <remarks>string, string[]</remarks>
public const string CommentKey = "comment";
/// TODO: This needs an internal model OR mapping to fields
/// <remarks>Trurip</remarks>
[NoFilter]
public const string TruripKey = "trurip";
#endregion
}
}