mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-16 11:13:05 +00:00
18 lines
357 B
C#
18 lines
357 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("device_ref"), XmlRoot("device_ref")]
|
|
public class DeviceRef : DatItem
|
|
{
|
|
#region Properties
|
|
|
|
public string? Name { get; set; }
|
|
|
|
#endregion
|
|
|
|
public DeviceRef() => ItemType = ItemType.DeviceRef;
|
|
}
|
|
}
|