End property

DateTime? End
Gets or sets the end time of the appointment.

Implementation

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

Implementation

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