mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-10 06:10:17 -04:00
11 lines
206 B
Python
11 lines
206 B
Python
from sqlalchemy import Enum
|
|
|
|
|
|
class ProgramEnum(Enum):
|
|
ECONOMIC = "economic"
|
|
DOMESTIC = "domestic"
|
|
COMMUNITY = "community"
|
|
|
|
def __init__(self):
|
|
super().__init__(name="program_enum")
|