1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.EducationManage;
- namespace EMIS.ViewModel.EducationSchedule
- {
- public class SchedulingWeekListView
- {
- public int? Week { get; set; }
- public int? Times { get; set; }
- public List<CourseProcessTeacherView> CourseProcessTeacherViewList { get; set; }
- public string StaffNames { get; set; }
- public int? ClassroomTypeID { get; set; }
- public string ClassroomTypeName { get; set; }
- public Guid? ClassroomID { get; set; }
- public string ClassroomName { get; set; }
- }
- }
|