using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel.CalendarManage { public class CalendarView { public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } public string UniversityName { get; set; } public SchoolYearView SchoolYear { get; set; } public List Months { get; set; } public List WeekNums { get; set; } public List WeekDays { get; set; } public List Holidays { get; set; } public string HolidayStr { get; set; } public string ScalendarStr { get; set; } } }