- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.ExamManage
- {
- public class ExamSubjectView
- {
- public int? ExaminationSubjectID { get; set; }
- public string ExaminationSubjectName { get; set; }
- public int? ResitCount { get; set; }
- }
- }
|