ProjectStatus
The ProjectStatus
enum is used to define the status of a project.
ProjectStatus
enum ProjectStatus {
UNCONFIRMED = "UNCONFIRMED",
TO_DO = "TO_DO",
IN_PROGRESS = "IN_PROGRESS",
COMPLETED = "COMPLETED",
}
The ProjectStatus
enum is used to define the status of a project.
enum ProjectStatus {
UNCONFIRMED = "UNCONFIRMED",
TO_DO = "TO_DO",
IN_PROGRESS = "IN_PROGRESS",
COMPLETED = "COMPLETED",
}