mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 08:38:49 -07:00
18 lines
342 B
C#
18 lines
342 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "RPAT", Namespace = "")]
|
|
[Serializable]
|
|
public class RaisedPetAttribute
|
|
{
|
|
[XmlElement(ElementName = "k")]
|
|
public string Key;
|
|
|
|
[XmlElement(ElementName = "v")]
|
|
public string Value;
|
|
|
|
[XmlElement(ElementName = "dt")]
|
|
public DataType Type;
|
|
}
|