Exercise.cs 581 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models.Cosmos.Common.Inner
  5. {
  6. /// <summary>
  7. /// 用于HTEX json的数据结构
  8. /// </summary>
  9. public class Exercise : BaseItem
  10. {
  11. public Exercise()
  12. {
  13. pk = "Item";
  14. children = new List<string>();
  15. answer = new List<string>();
  16. points = new List<string>();
  17. gradeIds = new List<string>();
  18. repair = new List<Repair>();
  19. }
  20. public List<string> children { get; set; }
  21. }
  22. }