using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.Report { public class ClassroomSchedulingReportView { public Guid? CoursesTimeID { get; set; } public int? StartTimes { get; set; } public string Times { get; set; } public string TimeDesc { get; set; } public int? Weekday { get; set; } public string WeekdayDesc { get; set; } public Guid? SchoolyearID { get; set; } public string Code { get; set; } public Guid? EducationSchedulingClassID { get; set; } public string TaskGroupName { get; set; } public int? StudentCount { get; set; } public Guid? EducationMissionClassID { get; set; } public int? OrderNo { get; set; } public string Name { get; set; } public int? TeachingModeID { get; set; } public Guid? EducationMissionID { get; set; } public Guid? BuildingsInfoID { get; set; } public string BuildingsName { get; set; } public string CourseCode { get; set; } public string CourseName { get; set; } public int? StartWeeklyNum { get; set; } public int? EndWeeklyNum { get; set; } public Guid? ClassroomID { get; set; } public string ClassroomName { get; set; } public Guid? UserID { get; set; } public string StaffName { get; set; } public string TeacherName { get; set; } public string WeekNums { get; set; } public int? MinWeekNum { get; set; } } }