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