StartDate property

DateTime? StartDate
Gets or sets the date and time on which the task starts.

Implementation

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

Implementation

set StartDate(DateTime? value) =>
    this.PropertyBag[TaskSchema.StartDate] = value;