project setup

This commit is contained in:
Sone
2025-11-02 10:08:56 +01:00
commit 568838003e
174 changed files with 27100 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export enum PriorityStatus {
HIGH_PRIORITY = "HIGH_PRIORITY",
MODERATE_PRIORITY = "MODERATE_PRIORITY",
LOW_PRIORITY = "LOW_PRIORITY",
}
export const PriorityStatusLabels: Record<PriorityStatus, string> = {
[PriorityStatus.HIGH_PRIORITY]: "High Priority",
[PriorityStatus.MODERATE_PRIORITY]: "Moderate Priority",
[PriorityStatus.LOW_PRIORITY]: "Low Priority",
};