Update Listxml deserialization test, fix issues

This commit is contained in:
Matt Nadareski
2023-07-14 11:09:57 -04:00
parent bda3315c7a
commit 4dc0185629
13 changed files with 283942 additions and 134 deletions

View File

@@ -18,11 +18,18 @@ namespace SabreTools.Models.Listxml
[XmlAttribute("players")]
public string Players { get; set; }
/// <remarks>Only present in older versions</remarks>
[XmlAttribute("control")]
public string? ControlAttr { get; set; }
/// <remarks>Only present in older versions, Numeric?</remarks>
[XmlAttribute("buttons")]
public string Buttons { get; set; }
/// <remarks>Numeric?</remarks>
[XmlAttribute("coins")]
public string? Coins { get; set; }
/// <remarks>Numeric?</remarks>
[XmlElement("control")]
public Control[]? Control { get; set; }