mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-22 22:29:42 +00:00
18 lines
343 B
C#
18 lines
343 B
C#
using System.Xml.Serialization;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace SabreTools.Data.Models.Metadata
|
|
{
|
|
[JsonObject("analog"), XmlRoot("analog")]
|
|
public class Analog : DatItem
|
|
{
|
|
#region Properties
|
|
|
|
public string? Mask { get; set; }
|
|
|
|
#endregion
|
|
|
|
public Analog() => ItemType = ItemType.Analog;
|
|
}
|
|
}
|