Files
SabreTools/SabreTools.DatItems/Formats/Control.cs
2024-07-17 15:46:42 -04:00

30 lines
681 B
C#

using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.DatItems.Formats
{
/// <summary>
/// Represents control for an input
/// </summary>
[JsonObject("control"), XmlRoot("control")]
public sealed class Control : DatItem<Models.Metadata.Control>
{
#region Fields
/// <inheritdoc>/>
protected override ItemType ItemType => ItemType.Control;
/// <inheritdoc>/>
protected override string? NameKey => null;
#endregion
#region Constructors
public Control() : base() { }
public Control(Models.Metadata.Control item) : base(item) { }
#endregion
}
}