using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.Data.Models.Metadata { [JsonObject("dipvalue"), XmlRoot("dipvalue")] public class DipValue : DatItem { #region Properties /// (yes|no) "no" public bool? Default { get; set; } public string? Name { get; set; } public string? Value { get; set; } #endregion #region Keys /// Condition [NoFilter] public const string ConditionKey = "condition"; #endregion public DipValue() => ItemType = ItemType.DipValue; } }