StudentRelateSchedulingClassView.cs 520 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.Students
  6. {
  7. public class StudentRelateSchedulingClassView
  8. {
  9. public Guid? EducationSchedulingClassID { get; set; }
  10. public string EducationMissionClassName { get; set; }
  11. public IEnumerable<Guid?> ClassmajorIDList { get; set; }
  12. public int? StudentCount { get; set; }
  13. public string MinLoginID { get; set; }
  14. public string MaxLoginID { get; set; }
  15. }
  16. }