using System.Xml.Serialization; using Newtonsoft.Json; namespace SabreTools.Data.Models.Metadata { /// /// Format-agnostic representation of item data /// public class DatItem : DictionaryBase { /// /// Quick accessor to item type, if it exists /// [JsonProperty("itemtype", DefaultValueHandling = DefaultValueHandling.Ignore), XmlElement("itemtype")] public ItemType ItemType { get; protected set; } } }