sodoff/src/Schema/ItemAttribute.cs
hictooth 199d44f1cd create profile
works up to start of tutorial
2023-06-19 20:23:53 +01:00

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;
}