17 lines
391 B
Python
17 lines
391 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class TemplateEnum(Enum):
|
||
|
|
||
|
TemplatePath = 'TemplatePath'
|
||
|
Name = 'Name'
|
||
|
Description = 'Description'
|
||
|
LongDescription = 'LongDescription'
|
||
|
CopyrightDate = 'CopyrightDate'
|
||
|
CopyrightName = 'CopyrightName'
|
||
|
LicenseName = 'LicenseName'
|
||
|
LicenseDescription = 'LicenseDescription'
|
||
|
Title = 'Title'
|
||
|
Author = 'Author'
|
||
|
Version = 'Version'
|