using HTEXLib; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace TEAMModelOS.Models.Dto { public class ItemDto { public string id { get; set; } public string pid { get; set; } public Exercise exercise { get; set; } = new Exercise(); //public double render { get; set; } public List item { get; set; } = new List(); public class Exercise { public List answer { get; set; } = new List(); public string explain { get; set;} public string type { get; set; } public int opts { get; set; } public List knowledge { get; set; } = new List(); public int? field { get; set; } public int level { get; set; } public string periodId { get; set; } public List gradeIds { get; set; } = new List(); public string subjectId { get; set; } public List children { get; set; } = new List(); public string scope { get; set; } public double score { get; set; } //public List repair { get; set; } } /* public class CodeValue { public string code { get; set; } public string value { get; set; } }*/ } public class info { public string type { get; set; } = "Html"; public string uid { get; set; } public string question { get; set; } public List option { get; set; } = new List(); } }