mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
19 lines
370 B
C#
19 lines
370 B
C#
|
|
using System.Xml.Serialization;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace SabreTools.Models.Internal
|
|||
|
|
{
|
|||
|
|
[JsonObject("analog"), XmlRoot("analog")]
|
|||
|
|
public class Analog : DatItem
|
|||
|
|
{
|
|||
|
|
#region Keys
|
|||
|
|
|
|||
|
|
/// <remarks>string</remarks>
|
|||
|
|
public const string MaskKey = "mask";
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
public Analog() => Type = ItemType.Analog;
|
|||
|
|
}
|
|||
|
|
}
|