mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 21:48:30 +00:00
25 lines
576 B
C#
25 lines
576 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Models.Metadata
|
|
{
|
|
[JsonObject("slotoption"), XmlRoot("slotoption")]
|
|
public class SlotOption : DatItem
|
|
{
|
|
#region Keys
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
public const string DefaultKey = "default";
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string DevNameKey = "devname";
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string NameKey = "name";
|
|
|
|
#endregion
|
|
|
|
public SlotOption() => Type = ItemType.SlotOption;
|
|
}
|
|
}
|