EmployeeResourcePlannerProperties.cs 794 B

12345678910111213141516171819202122232425
  1. using System;
  2. using InABox.Configuration;
  3. namespace PRSDesktop
  4. {
  5. public class EmployeeResourcePlannerProperties : IUserConfigurationSettings, IDashboardProperties
  6. {
  7. public EmployeeSelectorSettings EmployeeSettings { get; set; }
  8. public bool IncludeUnApprovedLeave { get; set; }
  9. public EmployeeSelectorData EmployeeSelection { get; set; }
  10. public Guid ActivityType { get; set; }
  11. public String JobFilter { get; set; }
  12. public EmployeeResourcePlannerProperties()
  13. {
  14. EmployeeSettings = new EmployeeSelectorSettings();
  15. EmployeeSelection = new EmployeeSelectorData();
  16. IncludeUnApprovedLeave = false;
  17. ActivityType = Guid.Empty;
  18. JobFilter = "";
  19. }
  20. }
  21. }