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