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 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(); StartHour = 5; EndHour = 18; ShowTimeSheets = false; Zoom = 100; } } }