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