ActualWork property

int? 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?;
void ActualWork=(int? value)

Implementation

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