using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.Models.Internal { [JsonObject("dipvalue"), XmlRoot("dipvalue")] public class DipValue : DatItem { #region Keys /// Condition [NoFilter] public const string ConditionKey = "condition"; /// (yes|no) "no" public const string DefaultKey = "default"; /// string public const string NameKey = "name"; /// string public const string ValueKey = "value"; #endregion public DipValue() => Type = ItemType.DipValue; } }