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