ActualWork property

int? get ActualWork
Gets or sets the actual amount of time that is spent on the task.

Implementation

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

Implementation

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