Interface IItemTaskType
The system entity for a task, which can be associated with any entity in the system
See https://help.lemonedge.com/help/enterprise-data-tools/workflow/tasks/intro.html for more information
Inherited Members
Namespace: LemonEdge.API.Entities.Workflow
Assembly: LemonEdge.API.dll
Syntax
[EntityDefinition(EntityID.TaskType, "dbo.LT_ItemTaskTypes", "ItemTaskType", IsStandingDataEntity = true, LabelColumn = "Name")]
[DefaultEntityIcon(ImageType.Pin)]
public interface IItemTaskType : IBaseEntityWithPermissions, IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
Color
Hex color value to display for this task
Declaration
[EntityProperty(SQLType.NVarChar, 10, true)]
[EntityDescription("Hex color value to display for this task")]
string Color { get; set; }
Property Value
Type | Description |
---|---|
string |
Description
Declaration
[EntityProperty(SQLType.NVarChar, true)]
[EntityDescription("The task type description.")]
string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
The name of the task type
Declaration
[EntityKeyProperty]
[EntityProperty(SQLType.NVarChar, 100, false)]
[EntityDescription("The task type name.")]
[Required]
string Name { get; set; }
Property Value
Type | Description |
---|---|
string |