Add No-Intro MIA support

This commit is contained in:
Matt Nadareski
2023-03-26 22:03:29 -04:00
parent 2681e4a997
commit dc79249d61
9 changed files with 59 additions and 3 deletions

View File

@@ -230,6 +230,19 @@ namespace SabreTools.DatItems.Formats
#endregion
#region Logiqx
/// <summary>
/// Alternate title for the item
/// </summary>
[JsonProperty("mia", DefaultValueHandling = DefaultValueHandling.Ignore), XmlElement("mia")]
public bool? MIA { get; set; } = null;
[JsonIgnore]
public bool MIASpecified { get { return MIA != null; } }
#endregion
#region OpenMSX
/// <summary>
@@ -432,6 +445,8 @@ namespace SabreTools.DatItems.Formats
AltName = this.AltName,
AltTitle = this.AltTitle,
MIA = this.MIA,
Original = this.Original,
OpenMSXSubType = this.OpenMSXSubType,
OpenMSXType = this.OpenMSXType,