using System; namespace PRSDesktop; public class CalendarTimeSlot(Guid employeeid, DateTime date, TimeSpan start, TimeSpan end) { public Guid EmployeeID { get; } = employeeid; public DateTime Date { get; } = date; public TimeSpan Start { get; } = start; public TimeSpan End { get; } = end; }