CalendarTimeSlot.cs 318 B

12345678910111213141516
  1. using System;
  2. namespace PRSDesktop
  3. {
  4. public class CalendarTimeSlot
  5. {
  6. public CalendarTimeSlot(Guid employeeid, DateTime time)
  7. {
  8. EmployeeID = employeeid;
  9. Time = time;
  10. }
  11. public Guid EmployeeID { get; }
  12. public DateTime Time { get; }
  13. }
  14. }