using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.Models.Internal
{
[JsonObject("chip"), XmlRoot("chip")]
public class Chip : DatItem
{
#region Keys
/// long
public const string ClockKey = "clock";
/// string
public const string FlagsKey = "flags";
/// string
public const string NameKey = "name";
/// (yes|no) "no"
public const string SoundOnlyKey = "soundonly";
/// string
public const string TagKey = "tag";
/// (cpu|audio)
public const string ChipTypeKey = "type";
#endregion
public Chip() => Type = ItemType.Chip;
}
}