12 lines
375 B
TypeScript
12 lines
375 B
TypeScript
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",
|
|
};
|