mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-13 01:33:11 +00:00
18 lines
512 B
C#
18 lines
512 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
/// <summary>
|
|
/// Format-agnostic representation of item data
|
|
/// </summary>
|
|
public class DatItem : DictionaryBase
|
|
{
|
|
/// <summary>
|
|
/// Quick accessor to item type, if it exists
|
|
/// </summary>
|
|
[JsonProperty("itemtype", DefaultValueHandling = DefaultValueHandling.Ignore), XmlElement("itemtype")]
|
|
public ItemType ItemType { get; protected set; }
|
|
}
|
|
}
|