| 1234567891011121314151617181920212223242526272829 | using System;using System.Collections.Generic;using InABox.Configuration;namespace Comal.Classes{    public class LeaveSettings : IUserConfigurationSettings    {        public LeaveSettings()        {            SelectedGroups = new List<Guid>();            SelectedEmployees = new List<Guid>();            FromDate = DateTime.Today;            ToDate = DateTime.Today.AddYears(1);            ListSize = 200.0F;            OnlyShowLeave = false;        }        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 bool OnlyShowLeave { get; set; }        public double ListSize { get; set; }    }}
 |