- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.Students;
- namespace EMIS.ViewModel.EducationManage
- {
- public class EducationSchedulingClassStudentView
- {
- public Guid? EducationSchedulingClassID { get; set; }
- public Guid UserID { get; set; }
- public string Name { get; set; }
- }
- }
|