- using System;
- using System.Windows.Media;
- using PropertyChanged;
- using Syncfusion.UI.Xaml.Schedule;
- namespace PRSDesktop
- {
- [DoNotNotify]
- public class ScheduleBooking : ScheduleAppointment
- {
- public Guid SetoutID { get; set; }
- public string SetoutNumber { get; set; }
- public string Description { get; set; }
- public Brush AppointmentForeground { get; set; }
- }
- }
|