using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.Models.Internal { [JsonObject("biosset"), XmlRoot("biosset")] public class BiosSet : DatItem { #region Keys /// bool public const string DefaultKey = "default"; /// string public const string DescriptionKey = "description"; /// string public const string NameKey = "name"; #endregion public BiosSet() => Type = ItemType.BiosSet; } }