mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Create Required attribute and tag properties
This commit is contained in:
@@ -7,20 +7,24 @@ namespace SabreTools.Models.Logiqx
|
||||
public class Driver
|
||||
{
|
||||
/// <remarks>(good|imperfect|preliminary)</remarks>
|
||||
[Required]
|
||||
[XmlAttribute("status")]
|
||||
public string Status { get; set; }
|
||||
public string? Status { get; set; }
|
||||
|
||||
/// <remarks>(good|imperfect|preliminary)</remarks>
|
||||
[Required]
|
||||
[XmlAttribute("emulation")]
|
||||
public string Emulation { get; set; }
|
||||
public string? Emulation { get; set; }
|
||||
|
||||
/// <remarks>(good|imperfect|preliminary)</remarks>
|
||||
[Required]
|
||||
[XmlAttribute("cocktail")]
|
||||
public string Cocktail { get; set; }
|
||||
public string? Cocktail { get; set; }
|
||||
|
||||
/// <remarks>(supported|unsupported)</remarks>
|
||||
[Required]
|
||||
[XmlAttribute("savestate")]
|
||||
public string SaveState { get; set; }
|
||||
public string? SaveState { get; set; }
|
||||
|
||||
/// <remarks>(yes|no) "no"</remarks>
|
||||
[XmlAttribute("requiresartwork")]
|
||||
|
||||
Reference in New Issue
Block a user