using System.Xml; using System.Xml.Serialization; namespace SabreTools.Models.Logiqx { [XmlRoot("release")] public class Release : ItemBase { [XmlAttribute("name")] public string Name { get; set; } [XmlAttribute("region")] public string Region { get; set; } [XmlAttribute("language")] public string? Language { get; set; } [XmlAttribute("date")] public string? Date { get; set; } /// (yes|no) "no" [XmlAttribute("default")] public string? Default { get; set; } } }