program_type_enum.py

This commit is contained in:
Jordweinstein 2024-03-25 19:19:52 -04:00
parent 3bc603cb70
commit 8272cd06da
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
import enum
class ProgramType(enum.Enum):
ECONOMIC = "economic"
DOMESTIC = "domestic"
COMMUNITY = "community"