mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
15 lines
274 B
C#
15 lines
274 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "AT", Namespace = "")]
|
|
[Serializable]
|
|
public class ItemAttribute
|
|
{
|
|
[XmlElement(ElementName = "k")]
|
|
public string Key;
|
|
|
|
[XmlElement(ElementName = "v")]
|
|
public string Value;
|
|
}
|