1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel.Students
- {
- public class StudentRelateSchedulingClassView
- {
- public Guid? EducationSchedulingClassID { get; set; }
- public string EducationMissionClassName { get; set; }
- public IEnumerable<Guid?> ClassmajorIDList { get; set; }
- public int? StudentCount { get; set; }
- public string MinLoginID { get; set; }
- public string MaxLoginID { get; set; }
- }
- }
|