mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
25 lines
601 B
C#
25 lines
601 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Models.Internal
|
|
{
|
|
[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() => Type = ItemType.ConfLocation;
|
|
}
|
|
}
|