| 1234567891011121314151617181920212223242526272829 | using System;using System.Collections.Generic;using InABox.Configuration;namespace Comal.Classes{    public class ScheduleSettings : UserConfigurationSettings    {        public DateTime Date { get; set; }        public Guid GroupID { get; set; }        public List<Guid> SelectedEmployees { get; set; }        public int StartHour { get; set; }        public int EndHour { get; set; }        public int ViewType { get; set; }        public bool ShowTimeSheets { get; set; }        public double Zoom { get; set; }        public ScheduleSettings()        {            Date = DateTime.Today;            SelectedEmployees = new List<Guid>();            StartHour = 5;            EndHour = 18;            ShowTimeSheets = false;            Zoom = 100;        }            }}
 |