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

27 lines
546 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "Answers", IsNullable = true, Namespace = "")]
[Serializable]
public class ProfileAnswer
{
[XmlElement(ElementName = "ID")]
public int ID;
[XmlElement(ElementName = "T")]
public string DisplayText;
[XmlElement(ElementName = "Img")]
public string ImageURL;
[XmlElement(ElementName = "L")]
public string Locale;
[XmlElement(ElementName = "O")]
public int Ordinal;
[XmlElement(ElementName = "QID")]
public int QuestionID;
}