CalendarView.cs 689 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.CalendarManage
  6. {
  7. public class CalendarView
  8. {
  9. public DateTime StartDate { get; set; }
  10. public DateTime EndDate { get; set; }
  11. public string UniversityName { get; set; }
  12. public SchoolYearView SchoolYear { get; set; }
  13. public List<MonthView> Months { get; set; }
  14. public List<WeekNumView> WeekNums { get; set; }
  15. public List<WeekDayView> WeekDays { get; set; }
  16. public List<DateTime> Holidays { get; set; }
  17. public string HolidayStr { get; set; }
  18. public string ScalendarStr { get; set; }
  19. }
  20. }