mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-16 21:40:10 +00:00
19 lines
384 B
C#
19 lines
384 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Models.Metadata
|
|
{
|
|
[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;
|
|
}
|
|
}
|