2023-07-14 00:39:22 -04:00
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace SabreTools.Models.Logiqx
|
|
|
|
|
{
|
|
|
|
|
[XmlRoot("driver")]
|
2023-07-30 22:59:04 -04:00
|
|
|
public class Driver
|
2023-07-14 00:39:22 -04:00
|
|
|
{
|
|
|
|
|
/// <remarks>(good|imperfect|preliminary)</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
2023-07-14 00:39:22 -04:00
|
|
|
[XmlAttribute("status")]
|
2023-08-10 12:09:29 -04:00
|
|
|
public string? Status { get; set; }
|
2023-07-14 00:39:22 -04:00
|
|
|
|
|
|
|
|
/// <remarks>(good|imperfect|preliminary)</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
2023-07-14 00:39:22 -04:00
|
|
|
[XmlAttribute("emulation")]
|
2023-08-10 12:09:29 -04:00
|
|
|
public string? Emulation { get; set; }
|
2023-07-14 00:39:22 -04:00
|
|
|
|
|
|
|
|
/// <remarks>(good|imperfect|preliminary)</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
2023-07-14 00:39:22 -04:00
|
|
|
[XmlAttribute("cocktail")]
|
2023-08-10 12:09:29 -04:00
|
|
|
public string? Cocktail { get; set; }
|
2023-07-14 00:39:22 -04:00
|
|
|
|
|
|
|
|
/// <remarks>(supported|unsupported)</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
2023-07-14 00:39:22 -04:00
|
|
|
[XmlAttribute("savestate")]
|
2023-08-10 12:09:29 -04:00
|
|
|
public string? SaveState { get; set; }
|
2023-07-14 00:39:22 -04:00
|
|
|
|
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
|
|
|
[XmlAttribute("requiresartwork")]
|
|
|
|
|
public string? RequiresArtwork { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
|
|
|
[XmlAttribute("unofficial")]
|
|
|
|
|
public string? Unofficial { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
|
|
|
[XmlAttribute("nosoundhardware")]
|
|
|
|
|
public string? NoSoundHardware { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
|
|
|
[XmlAttribute("incomplete")]
|
|
|
|
|
public string? Incomplete { get; set; }
|
2023-07-30 22:59:04 -04:00
|
|
|
|
|
|
|
|
#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
|
2023-07-14 00:39:22 -04:00
|
|
|
}
|
|
|
|
|
}
|