Start property

DateTime? Start
Gets or sets the start time of the appointment.

Implementation

DateTime? get Start => this.PropertyBag[AppointmentSchema.Start] as DateTime?;
void Start=(DateTime? value)

Implementation

set Start(DateTime? value) =>
    this.PropertyBag[AppointmentSchema.Start] = value;