mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-10 06:10:17 -04:00
8 lines
130 B
Python
8 lines
130 B
Python
from enum import Enum
|
|
|
|
|
|
class Program_Enum(Enum):
|
|
ECONOMIC = "ECONOMIC"
|
|
DOMESTIC = "DOMESTIC"
|
|
COMMUNITY = "COMMUNITY"
|