CourseExamView.cs 669 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMISOnline.ViewModel.Student
  6. {
  7. public class CourseExamView
  8. {
  9. public Guid? CoursematerialID { get; set; }
  10. public string CourseName { get; set; }
  11. public string test_name { get; set; }
  12. public DateTime? test_begin_date { get; set; }
  13. public DateTime? test_end_date { get; set; }
  14. public int? limited_minutes { get; set; }
  15. public int? PassRate { get; set; }
  16. public int? ExamStatus { get; set; }
  17. public string ExamStatusName { get; set; }
  18. public decimal? ExamScore { get; set; }
  19. }
  20. }