CalendarEvent.cs 831 B

123456789101112131415161718192021222324
  1. namespace FMSAdmin.Models {
  2. public class CalendarEvent {
  3. public string Title { get; set; }
  4. public int RequestCount { get; set; }
  5. public int ConfirmCount { get; set; }
  6. public string Start { get; set; }
  7. public string End { get; set; }
  8. public string WorkType { get; set; }
  9. public string Type { get; set; }
  10. public int WorkRequestId { get; set; }
  11. public int GroupId { get; set; }
  12. public string Id { get; set; }
  13. public int SiteId { get; set; }
  14. }
  15. public class CalendarBackground {
  16. public string Title { get; set; }
  17. public string Date { get; set; }
  18. public string SunDate { get; set; }
  19. public bool IsLunar { get; set; }
  20. public string Type { get; set; }
  21. public string Id { get; set; }
  22. }
  23. }