Item.cs 733 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Model.EvaluaTion.Dtos
  5. {
  6. public class Item
  7. {
  8. public string Itemindex { get; set; }
  9. public string Type { get; set; }
  10. public string Objective { get; set; }
  11. public string Point { get; set; }
  12. public string Answer { get; set; }
  13. public string Spend_time { get; set; }
  14. public string Edu_goal { get; set; }
  15. public string Idx { get; set; }
  16. public string Concept_subject { get; set; }
  17. public string Concept_area { get; set; }
  18. public string Concept { get; set; }
  19. public string Url { get; set; }
  20. public string Question { get; set; }
  21. }
  22. }