mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-18 12:13:16 +00:00
25 lines
610 B
C#
25 lines
610 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("conflocation"), XmlRoot("conflocation")]
|
|
public class ConfLocation : DatItem
|
|
{
|
|
#region Keys
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
public const string InvertedKey = "inverted";
|
|
|
|
/// <remarks>string</remarks>
|
|
public const string NameKey = "name";
|
|
|
|
/// <remarks>string, possibly long</remarks>
|
|
public const string NumberKey = "number";
|
|
|
|
#endregion
|
|
|
|
public ConfLocation() => ItemType = ItemType.ConfLocation;
|
|
}
|
|
}
|