Skip to main content

Class AssignmentCreationForm

Provides a form to create a assignment

Inheritance

↳ object

    AssignmentCreationForm

Inherited Members

Equals(object)

Equals(object, object)

GetHashCode()

GetType()

ReferenceEquals(object, object)

ToString()

Namespace: OptimaJet.Workflow.Core.Model

Assembly: OptimaJet.Workflow.Core.dll

Syntax
public sealed class AssignmentCreationForm

Properties

Id

If id is null a new value will be generated

Declaration
public Guid? Id { get; set; }
Property value
TypeDescription
Guid?

AssignmentCode

Required assignment code

Declaration
public string AssignmentCode { get; set; }
Property value
TypeDescription
string

Name

Required assignment name

Declaration
public string Name { get; set; }
Property value
TypeDescription
string

Description

Assignment description

Declaration
public string Description { get; set; }
Property value
TypeDescription
string

IsActive

Property for managing the assignment from the designer

Declaration
public bool IsActive { get; set; }
Property value
TypeDescription
bool

DeadlineToComplete

Deadline to complete

Declaration
public DateTime? DeadlineToComplete { get; set; }
Property value
TypeDescription
DateTime?

DeadlineToStart

Deadline to start

Declaration
public DateTime? DeadlineToStart { get; set; }
Property value
TypeDescription
DateTime?

Executor

Executor identity

Declaration
public string Executor { get; set; }
Property value
TypeDescription
string

Observers

List of identities

Declaration
public List<string> Observers { get; set; }
Property value
TypeDescription
List<string>

Tags

List of tags

Declaration
public List<string> Tags { get; set; }
Property value
TypeDescription
List<string>

Extension Methods