mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-17 11:43:02 +00:00
31 lines
671 B
C#
31 lines
671 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("ramoption"), XmlRoot("ramoption")]
|
|
public class RamOption : DatItem
|
|
{
|
|
#region Properties
|
|
|
|
public string? Name { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Keys
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string ContentKey = "content";
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
public const string DefaultKey = "default";
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string NameKey = "name";
|
|
|
|
#endregion
|
|
|
|
public RamOption() => ItemType = ItemType.RamOption;
|
|
}
|
|
}
|