mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
28 lines
650 B
C#
28 lines
650 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.DatItems.Formats
|
|
{
|
|
/// <summary>
|
|
/// Represents which Device Reference(s) is associated with a set
|
|
/// </summary>
|
|
[JsonObject("device_ref"), XmlRoot("device_ref")]
|
|
public sealed class DeviceRef : DatItem<Models.Metadata.DeviceRef>
|
|
{
|
|
#region Fields
|
|
|
|
/// <inheritdoc>/>
|
|
protected override ItemType ItemType => ItemType.DeviceRef;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public DeviceRef() : base() { }
|
|
|
|
public DeviceRef(Models.Metadata.DeviceRef item) : base(item) { }
|
|
|
|
#endregion
|
|
}
|
|
}
|