mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-22 22:29:42 +00:00
54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
using SabreTools.Data.Models.Metadata;
|
|
|
|
namespace SabreTools.Data.Models.Listxml
|
|
{
|
|
[XmlRoot("rom")]
|
|
public class Rom
|
|
{
|
|
[Required]
|
|
[XmlAttribute("name")]
|
|
public string? Name { get; set; }
|
|
|
|
[XmlAttribute("bios")]
|
|
public string? Bios { get; set; }
|
|
|
|
[Required]
|
|
[XmlAttribute("size")]
|
|
public long? Size { get; set; }
|
|
|
|
[XmlAttribute("crc")]
|
|
public string? CRC { get; set; }
|
|
|
|
[XmlAttribute("sha1")]
|
|
public string? SHA1 { get; set; }
|
|
|
|
[XmlAttribute("merge")]
|
|
public string? Merge { get; set; }
|
|
|
|
[XmlAttribute("region")]
|
|
public string? Region { get; set; }
|
|
|
|
/// <remarks>Numeric</remarks>
|
|
[XmlAttribute("offset")]
|
|
public string? Offset { get; set; }
|
|
|
|
/// <remarks>(baddump|nodump|good) "good"</remarks>
|
|
[XmlAttribute("status")]
|
|
public ItemStatus? Status { get; set; }
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
[XmlAttribute("optional")]
|
|
public bool? Optional { get; set; }
|
|
|
|
/// <remarks>(yes|no) "no", Only present in older versions</remarks>
|
|
[XmlAttribute("dispose")]
|
|
public bool? Dispose { get; set; }
|
|
|
|
/// <remarks>(yes|no) "no", Only present in older versions</remarks>
|
|
[XmlAttribute("soundonly")]
|
|
public bool? SoundOnly { get; set; }
|
|
}
|
|
}
|