Files

19 lines
389 B
C#
Raw Permalink Normal View History

2025-09-26 10:20:48 -04:00
using System.Xml.Serialization;
using Newtonsoft.Json;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.Metadata
2025-09-26 10:20:48 -04:00
{
[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;
}
}