DueDate property

DateTime? DueDate
Gets or sets the date and time on which the task is due.

Implementation

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

Implementation

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