10 lines
170 B
Python
10 lines
170 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class ProjectSettingsName(Enum):
|
||
|
|
||
|
dist_path = 'DistPath'
|
||
|
excluded_files = 'ExcludedFiles'
|
||
|
version = 'Version'
|
||
|
project = 'Project'
|