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 = ""; } } }