| 1234567891011121314151617181920212223242526 | using System;using System.Collections.Generic;using InABox.Configuration;namespace Comal.Classes{    public class LeaveSettings : UserConfigurationSettings    {        public LeaveSettings()        {            SelectedGroups = new List<Guid>();            SelectedEmployees = new List<Guid>();            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<Guid> SelectedGroups { get; set; }        public List<Guid> SelectedEmployees { get; set; }        public double ListSize { get; set; }    }}
 |