DueDate property

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

Implementation

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

Implementation

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