enum CurrentStage {
    STARTED = "STARTED",
    INPROGRESS = "INPROGRESS",
    COMPLETED = "COMPLETED",
}
export { CurrentStage };
