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