Files
SabreTools.Serialization/SabreTools.Data.Models/Listxml/Mess.cs

17 lines
370 B
C#
Raw Normal View History

2025-09-26 10:20:48 -04:00
using System.Xml;
using System.Xml.Serialization;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.Listxml
2025-09-26 10:20:48 -04:00
{
[XmlRoot("mess")]
public class Mess
{
[XmlAttribute("version")]
public string? Version { get; set; }
[XmlElement("machine", typeof(Machine))]
[XmlElement("game", typeof(Game))]
public GameBase[]? Game { get; set; }
}
2026-01-27 12:03:01 -05:00
}