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