mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-07 05:00:16 -04:00
14 lines
245 B
Python
14 lines
245 B
Python
from enum import Enum
|
|
|
|
|
|
class ProgramTypeEnum(str, Enum):
|
|
DOMESTIC = "DOMESTIC"
|
|
ECONOMIC = "ECONOMIC"
|
|
COMMUNITY = "COMMUNITY"
|
|
|
|
|
|
class UserTypeEnum(str, Enum):
|
|
ADMIN = "ADMIN"
|
|
EMPLOYEE = "EMPLOYEE"
|
|
VOLUNTEER = "VOLUNTEER"
|