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