ExerciseInfo.cs 567 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Model.EvaluaTion.Dtos
  5. {
  6. public class ExerciseInfo
  7. {
  8. public string Ex_name { get; set; }
  9. public string Ex_time { get; set; }
  10. public string Ex_type { get; set; }
  11. public string Ex_mode { get; set; }
  12. public string Course_no { get; set; }
  13. public string Course_name { get; set; }
  14. public string Serialnumber { get; set; }
  15. public string Stucount { get; set; }
  16. public string Cover { get; set; }
  17. }
  18. }