12345678910111213141516171819202122232425 |
- using System;
- using InABox.Configuration;
- namespace PRSDesktop
- {
- public class EmployeeResourcePlannerProperties : IUserConfigurationSettings, IDashboardProperties
- {
- public EmployeeSelectorSettings EmployeeSettings { get; set; }
-
- public bool IncludeUnApprovedLeave { get; set; }
-
- public EmployeeSelectorData EmployeeSelection { get; set; }
- public Guid ActivityType { get; set; }
- public String JobFilter { get; set; }
- public EmployeeResourcePlannerProperties()
- {
- EmployeeSettings = new EmployeeSelectorSettings();
- EmployeeSelection = new EmployeeSelectorData();
- IncludeUnApprovedLeave = false;
- ActivityType = Guid.Empty;
- JobFilter = "";
- }
- }
- }
|