using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.Models.Internal
{
[JsonObject("conflocation"), XmlRoot("conflocation")]
public class ConfLocation : 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 ConfLocation() => Type = ItemType.ConfLocation;
}
}