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 ClassmajorIDList { get; set; } public int? StudentCount { get; set; } public string MinLoginID { get; set; } public string MaxLoginID { get; set; } } }