mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 15:47:27 +00:00
22 lines
472 B
C#
22 lines
472 B
C#
|
|
using System.Xml.Serialization;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace SabreTools.Models.Metadata
|
||
|
|
{
|
||
|
|
[JsonObject("instance"), XmlRoot("instance")]
|
||
|
|
public class Instance : DatItem
|
||
|
|
{
|
||
|
|
#region Keys
|
||
|
|
|
||
|
|
/// <remarks>string</remarks>
|
||
|
|
public const string BriefNameKey = "briefname";
|
||
|
|
|
||
|
|
/// <remarks>string</remarks>
|
||
|
|
public const string NameKey = "name";
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
|
||
|
|
public Instance() => Type = ItemType.Instance;
|
||
|
|
}
|
||
|
|
}
|