Interface ITask
The payroll task object
Inherited Members
Namespace: PayrollEngine.Client.Model
Assembly: PayrollEngine.Client.Core.dll
Syntax
public interface ITask : IModel, IAttributeObject, IEquatable<ITask>
Properties
Category
The task category
Declaration
string Category { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Completed
The task completed date
Declaration
DateTime? Completed { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? |
CompletedUserId
The completed user id
Declaration
int? CompletedUserId { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |
CompletedUserIdentifier
The completed user identifier
Declaration
string CompletedUserIdentifier { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Instruction
The task instruction
Declaration
string Instruction { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
The task name (immutable)
Declaration
string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
NameLocalizations
The localized task names (immutable)
Declaration
Dictionary<string, string> NameLocalizations { get; set; }
Property Value
| Type | Description |
|---|---|
| Dictionary<string, string> |
Scheduled
The task schedule date (immutable)
Declaration
DateTime Scheduled { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime |
ScheduledUserId
The scheduled user id
Declaration
int ScheduledUserId { get; set; }
Property Value
| Type | Description |
|---|---|
| int |
ScheduledUserIdentifier
The scheduled user identifier
Declaration
string ScheduledUserIdentifier { get; set; }
Property Value
| Type | Description |
|---|---|
| string |