mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-14 10:13:12 +00:00
25 lines
590 B
C#
25 lines
590 B
C#
using System.Xml;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace SabreTools.Data.Models.Listxml
|
|
{
|
|
[XmlRoot("mame")]
|
|
public class Mame
|
|
{
|
|
[XmlAttribute("build")]
|
|
public string? Build { get; set; }
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
[XmlAttribute("debug")]
|
|
public bool? Debug { get; set; }
|
|
|
|
[Required]
|
|
[XmlAttribute("mameconfig")]
|
|
public string? MameConfig { get; set; }
|
|
|
|
[XmlElement("machine", typeof(Machine))]
|
|
[XmlElement("game", typeof(Game))]
|
|
public GameBase[]? Game { get; set; }
|
|
}
|
|
}
|