12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMISOnline.ViewModel.Student
- {
- public class CourseExamView
- {
- public Guid? CoursematerialID { get; set; }
- public string CourseName { get; set; }
- public string test_name { get; set; }
- public DateTime? test_begin_date { get; set; }
- public DateTime? test_end_date { get; set; }
- public int? limited_minutes { get; set; }
- public int? PassRate { get; set; }
- public int? ExamStatus { get; set; }
- public string ExamStatusName { get; set; }
- public decimal? ExamScore { get; set; }
- }
- }
|