2025-09-26 10:20:48 -04:00
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.Logiqx
|
2025-09-26 10:20:48 -04:00
|
|
|
{
|
|
|
|
|
[XmlRoot("header")]
|
|
|
|
|
public class Header
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>No-Intro extension</remarks>
|
|
|
|
|
[XmlElement("id")]
|
|
|
|
|
public string? Id { get; set; }
|
|
|
|
|
|
2025-09-26 11:42:28 -04:00
|
|
|
[Required]
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlElement("name")]
|
|
|
|
|
public string? Name { get; set; }
|
|
|
|
|
|
2025-09-26 11:42:28 -04:00
|
|
|
[Required]
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlElement("description")]
|
|
|
|
|
public string? Description { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>Trurip extension</remarks>
|
|
|
|
|
[XmlElement("rootdir")]
|
|
|
|
|
public string? RootDir { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("category")]
|
|
|
|
|
public string? Category { get; set; }
|
|
|
|
|
|
2025-09-26 11:42:28 -04:00
|
|
|
[Required]
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlElement("version")]
|
|
|
|
|
public string? Version { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("date")]
|
|
|
|
|
public string? Date { get; set; }
|
|
|
|
|
|
2025-09-26 11:42:28 -04:00
|
|
|
[Required]
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlElement("author")]
|
|
|
|
|
public string? Author { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("email")]
|
|
|
|
|
public string? Email { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("homepage")]
|
|
|
|
|
public string? Homepage { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("url")]
|
|
|
|
|
public string? Url { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("comment")]
|
|
|
|
|
public string? Comment { get; set; }
|
|
|
|
|
|
2026-07-23 16:15:27 -04:00
|
|
|
/// <remarks>RomVault extension</remarks>
|
|
|
|
|
[XmlElement("subset")]
|
|
|
|
|
public string? Subset { get; set; }
|
|
|
|
|
|
2025-09-26 10:20:48 -04:00
|
|
|
/// <remarks>Trurip extension</remarks>
|
|
|
|
|
[XmlElement("type")]
|
|
|
|
|
public string? Type { get; set; }
|
|
|
|
|
|
2026-04-06 18:51:09 -04:00
|
|
|
[XmlElement("romvault")]
|
|
|
|
|
public RomVault? RomVault { get; set; }
|
|
|
|
|
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlElement("clrmamepro")]
|
|
|
|
|
public ClrMamePro? ClrMamePro { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("romcenter")]
|
|
|
|
|
public RomCenter? RomCenter { get; set; }
|
|
|
|
|
}
|
2026-01-27 12:03:01 -05:00
|
|
|
}
|