mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 23:57:18 +00:00
23 lines
479 B
C#
23 lines
479 B
C#
|
|
using System.Xml.Serialization;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace SabreTools.Models.Metadata
|
||
|
|
{
|
||
|
|
[JsonObject("slot"), XmlRoot("slot")]
|
||
|
|
public class Slot : DatItem
|
||
|
|
{
|
||
|
|
#region Keys
|
||
|
|
|
||
|
|
/// <remarks>string</remarks>
|
||
|
|
public const string NameKey = "name";
|
||
|
|
|
||
|
|
/// <remarks>SlotOption[]</remarks>
|
||
|
|
[NoFilter]
|
||
|
|
public const string SlotOptionKey = "slotoption";
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
|
||
|
|
public Slot() => Type = ItemType.Slot;
|
||
|
|
}
|
||
|
|
}
|