mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-07 05:00:16 -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"
|