using System.Xml.Serialization; namespace TechHelper.Client.Exam.QuestionSimple { [XmlRoot("QG")] public class QuestionGroup { [XmlElement("T")] public string Title { get; set; } [XmlElement("QR")] public string QuestionReference { get; set; } = ""; [XmlArray("SQs")] [XmlArrayItem("SQ")] public List SubQuestions { get; set; } = new List(); [XmlArray("SQGs")] [XmlArrayItem("QG")] public List SubQuestionGroups { get; set; } = new List(); } public class SubQuestion { [XmlElement("T")] public string Stem { get; set; } [XmlArray("Os")] [XmlArrayItem("O")] public List