using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.DatItems.Formats
{
///
/// Represents which Chip(s) is associated with a set
///
[JsonObject("chip"), XmlRoot("chip")]
public sealed class Chip : DatItem
{
#region Fields
/// />
protected override ItemType ItemType => ItemType.Chip;
/// />
protected override string? NameKey => Models.Metadata.Chip.NameKey;
#endregion
#region Constructors
public Chip() : base() { }
public Chip(Models.Metadata.Chip item) : base(item) { }
#endregion
}
}