mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
27 lines
715 B
C#
27 lines
715 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Models.Internal
|
|
{
|
|
/// <summary>
|
|
/// Format-agnostic representation of item data
|
|
/// </summary>
|
|
public class DatItem : DictionaryBase
|
|
{
|
|
#region Common Keys
|
|
|
|
public const string TypeKey = "_type";
|
|
|
|
#endregion
|
|
|
|
/// <summary>
|
|
/// Quick accessor to item type, if it exists
|
|
/// </summary>
|
|
[JsonProperty("itemtype", DefaultValueHandling = DefaultValueHandling.Ignore), XmlElement("itemtype")]
|
|
public ItemType? Type
|
|
{
|
|
get => ContainsKey(TypeKey) ? this[TypeKey] as ItemType? : null;
|
|
set => this[TypeKey] = value;
|
|
}
|
|
}
|
|
} |