ExamSubjectView.cs 336 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.ExamManage
  6. {
  7. public class ExamSubjectView
  8. {
  9. public int? ExaminationSubjectID { get; set; }
  10. public string ExaminationSubjectName { get; set; }
  11. public int? ResitCount { get; set; }
  12. }
  13. }