forked from SoDOff-Project/sodoff
33 lines
703 B
C#
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;
|
|
}
|