using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.DatItems.Formats
{
///
/// Represents one conflocation
///
[JsonObject("conflocation"), XmlRoot("conflocation")]
public sealed class ConfLocation : DatItem
{
#region Fields
/// />
protected override ItemType ItemType => ItemType.ConfLocation;
/// />
protected override string? NameKey => Models.Metadata.ConfLocation.NameKey;
#endregion
#region Constructors
public ConfLocation() : base() { }
public ConfLocation(Models.Metadata.ConfLocation item) : base(item) { }
#endregion
}
}