mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
18 lines
371 B
C#
18 lines
371 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "PT", Namespace = "")]
|
|
[Serializable]
|
|
public class ProfileTag
|
|
{
|
|
[XmlElement(ElementName = "ID")]
|
|
public int TagID;
|
|
|
|
[XmlElement(ElementName = "NA", IsNullable = true)]
|
|
public string TagName;
|
|
|
|
[XmlElement(ElementName = "VAL", IsNullable = true)]
|
|
public int? Value;
|
|
}
|