using System; using System.Collections.Generic; using InABox.Configuration; namespace Comal.Classes { public class LeaveSettings : IUserConfigurationSettings { public LeaveSettings() { SelectedGroups = new List(); SelectedEmployees = new List(); FromDate = DateTime.Today; ToDate = DateTime.Today.AddYears(1); ListSize = 200.0F; } public DateTime FromDate { get; set; } public DateTime ToDate { get; set; } public Guid GroupID { get; set; } public List SelectedGroups { get; set; } public List SelectedEmployees { get; set; } public double ListSize { get; set; } } }