StudentChangeDetailStudentCountView.cs 411 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.Students.HighBaseTable
  6. {
  7. public class StudentChangeDetailStudentCountView
  8. {
  9. public int? EducationTypeID { get; set; }
  10. public int? DifferentDynamicType { get; set; }
  11. public int? StudentInCount { get; set; }
  12. public int? StudentOutCount { get; set; }
  13. }
  14. }