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

@@ -16,8 +16,9 @@ namespace SabreTools.Models.Listxml
[XmlAttribute("mameconfig")]
public string MameConfig { get; set; }
[XmlElement("machine")]
public Machine[] Machine { get; set; }
[XmlElement("machine", typeof(Machine))]
[XmlElement("game", typeof(Game))]
public GameBase[] Game { get; set; }
#region DO NOT USE IN PRODUCTION