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

@@ -0,0 +1,12 @@
using System.Xml.Serialization;
namespace SabreTools.Models.Listxml
{
[XmlRoot("game")]
public class Game : GameBase
{
/// <remarks>Appears after Manufacturer</remarks>
[XmlElement("history")]
public string? History { get; set; }
}
}