ScheduleSettings.cs 802 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using InABox.Configuration;
  4. namespace Comal.Classes
  5. {
  6. public class ScheduleSettings : UserConfigurationSettings
  7. {
  8. public DateTime Date { get; set; }
  9. public Guid GroupID { get; set; }
  10. public List<Guid> SelectedEmployees { get; set; }
  11. public int StartHour { get; set; }
  12. public int EndHour { get; set; }
  13. public int ViewType { get; set; }
  14. public bool ShowTimeSheets { get; set; }
  15. public double Zoom { get; set; }
  16. public ScheduleSettings()
  17. {
  18. Date = DateTime.Today;
  19. SelectedEmployees = new List<Guid>();
  20. StartHour = 5;
  21. EndHour = 18;
  22. ShowTimeSheets = false;
  23. Zoom = 100;
  24. }
  25. }
  26. }