mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-21 13:49:42 +00:00
28 lines
606 B
C#
28 lines
606 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("conflocation"), XmlRoot("conflocation")]
|
|
public class ConfLocation : DatItem
|
|
{
|
|
#region Properties
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
public bool? Inverted { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Keys
|
|
|
|
/// <remarks>string, possibly long</remarks>
|
|
public const string NumberKey = "number";
|
|
|
|
#endregion
|
|
|
|
public ConfLocation() => ItemType = ItemType.ConfLocation;
|
|
}
|
|
}
|