using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.Data.Models.Metadata { [JsonObject("conflocation"), XmlRoot("conflocation")] public class ConfLocation : DatItem { #region Properties /// (yes|no) "no" public bool? Inverted { get; set; } public string? Name { get; set; } #endregion #region Keys /// string, possibly long public const string NumberKey = "number"; #endregion public ConfLocation() => ItemType = ItemType.ConfLocation; } }