Files
SabreTools/SabreTools.DatItems/Formats/ConfLocation.cs

30 lines
746 B
C#
Raw Normal View History

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