mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Use Listxml serializer for reading only
This commit is contained in:
@@ -11,6 +11,22 @@ namespace SabreTools.Models.Listxml
|
||||
[XmlAttribute("name")]
|
||||
public string Name { get; set; }
|
||||
|
||||
/// <remarks>Machine only</remarks>
|
||||
[XmlAttribute("sourcefile")]
|
||||
public string? SourceFile { get; set; }
|
||||
|
||||
/// <remarks>(yes|no) "no", Machine only</remarks>
|
||||
[XmlAttribute("isbios")]
|
||||
public string? IsBios { get; set; }
|
||||
|
||||
/// <remarks>(yes|no) "no", Machine only</remarks>
|
||||
[XmlAttribute("isdevice")]
|
||||
public string? IsDevice { get; set; }
|
||||
|
||||
/// <remarks>(yes|no) "no", Machine only</remarks>
|
||||
[XmlAttribute("ismechanical")]
|
||||
public string? IsMechanical { get; set; }
|
||||
|
||||
/// <remarks>(yes|no) "no"</remarks>
|
||||
[XmlAttribute("runnable")]
|
||||
public string? Runnable { get; set; }
|
||||
@@ -33,6 +49,10 @@ namespace SabreTools.Models.Listxml
|
||||
[XmlElement("manufacturer")]
|
||||
public string? Manufacturer { get; set; }
|
||||
|
||||
/// <remarks>Game only</remarks>
|
||||
[XmlElement("history")]
|
||||
public string? History { get; set; }
|
||||
|
||||
[XmlElement("biosset")]
|
||||
public BiosSet[]? BiosSet { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user