123456789101112131415161718192021222324 |
- namespace FMSAdmin.Models {
- public class CalendarEvent {
- public string Title { get; set; }
- public int RequestCount { get; set; }
- public int ConfirmCount { get; set; }
- public string Start { get; set; }
- public string End { get; set; }
- public string WorkType { get; set; }
- public string Type { get; set; }
- public int WorkRequestId { get; set; }
- public int GroupId { get; set; }
- public string Id { get; set; }
- public int SiteId { get; set; }
- }
- public class CalendarBackground {
- public string Title { get; set; }
- public string Date { get; set; }
- public string SunDate { get; set; }
- public bool IsLunar { get; set; }
- public string Type { get; set; }
- public string Id { get; set; }
- }
- }
|