Files
SabreTools/SabreTools.Models/Internal/DeviceRef.cs
2023-08-01 23:18:53 -04:00

19 lines
384 B
C#

using System.Xml.Serialization;
using Newtonsoft.Json;
namespace SabreTools.Models.Internal
{
[JsonObject("device_ref"), XmlRoot("device_ref")]
public class DeviceRef : DatItem
{
#region Keys
/// <remarks>string</remarks>
public const string NameKey = "name";
#endregion
public DeviceRef() => Type = ItemType.DeviceRef;
}
}