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

33 lines
703 B
C#

using System.Xml.Serialization;
namespace sodoff.Schema;
[XmlRoot(ElementName = "Qs", IsNullable = true, Namespace = "")]
[Serializable]
public class ProfileQuestion
{
[XmlElement(ElementName = "CID", IsNullable = false)]
public int CategoryID;
[XmlElement(ElementName = "Img")]
public string ImageURL;
[XmlElement(ElementName = "A")]
public string IsActive;
[XmlElement(ElementName = "L")]
public string Locale;
[XmlElement(ElementName = "Ord")]
public int Ordinal;
[XmlElement(ElementName = "ID")]
public int ID;
[XmlElement(ElementName = "T")]
public string DisplayText;
[XmlElement(ElementName = "Answers")]
public ProfileAnswer[] Answers;
}