using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.Models.Internal { [JsonObject("diplocation"), XmlRoot("diplocation")] public class DipLocation : DatItem { #region Keys /// (yes|no) "no" public const string InvertedKey = "inverted"; /// string public const string NameKey = "name"; /// string, possibly long public const string NumberKey = "number"; #endregion public DipLocation() => Type = ItemType.DipLocation; } }