mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-19 02:00:15 -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")
|