Project
Dto used to represent a project of the workspace.
ProjectDto
type ProjectDto = {
id: string;
name: string;
status: ProjectStatus;
color: ProjectColors;
totalAllocation: number;
external_id: string;
};
Properties
Name | Type | Description | Required | Default |
---|---|---|---|---|
id | string (uuid) | Project internal identifier | Yes | - |
name | string | Project name | yes | - |
color | ProjectColors | Project color | No | gray |
status | ProjectStatus | Project status | No | TO_DO |
totalAllocation | number | Total count of allocation of the project (in hours or days) | No | 0 |
external_id | string | External reference to the project | No | - |