TotalWork property

int? get TotalWork
Gets or sets the total amount of work spent on the task.

Implementation

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

Implementation

set TotalWork(int? value) => this.PropertyBag[TaskSchema.TotalWork] = value;