using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.Models.Internal { [JsonObject("part"), XmlRoot("part")] public class Part : DatItem { #region Keys /// DataArea[] public const string DataAreaKey = "dataarea"; /// DiskArea[] public const string DiskAreaKey = "diskarea"; /// DipSwitch[] public const string DipSwitchKey = "dipswitch"; /// Feature[] public const string FeatureKey = "feature"; /// string public const string InterfaceKey = "interface"; /// string public const string NameKey = "name"; #endregion public Part() => Type = ItemType.Part; } }