ScheduleBooking.cs 410 B

12345678910111213141516
  1. using System;
  2. using System.Windows.Media;
  3. using PropertyChanged;
  4. using Syncfusion.UI.Xaml.Schedule;
  5. namespace PRSDesktop
  6. {
  7. [DoNotNotify]
  8. public class ScheduleBooking : ScheduleAppointment
  9. {
  10. public Guid SetoutID { get; set; }
  11. public string SetoutNumber { get; set; }
  12. public string Description { get; set; }
  13. public Brush AppointmentForeground { get; set; }
  14. }
  15. }