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