StartDate property

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

Implementation

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

Implementation

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