mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
69 lines
1.7 KiB
C#
69 lines
1.7 KiB
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SabreTools.Models.Logiqx
|
|
{
|
|
[XmlRoot("header")]
|
|
public class Header
|
|
{
|
|
/// <remarks>No-Intro extension</remarks>
|
|
[XmlElement("id")]
|
|
public string? Id { get; set; }
|
|
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
|
|
[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; }
|
|
|
|
[XmlElement("version")]
|
|
public string Version { get; set; }
|
|
|
|
[XmlElement("date")]
|
|
public string? Date { get; set; }
|
|
|
|
[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; }
|
|
|
|
/// <remarks>Trurip extension</remarks>
|
|
[XmlElement("type")]
|
|
public string? Type { get; set; }
|
|
|
|
[XmlElement("clrmamepro")]
|
|
public ClrMamePro? ClrMamePro { get; set; }
|
|
|
|
[XmlElement("romcenter")]
|
|
public RomCenter? RomCenter { get; set; }
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
[XmlAnyAttribute]
|
|
public XmlAttribute[]? ADDITIONAL_ATTRIBUTES { get; set; }
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
[XmlAnyElement]
|
|
public object[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |