10 lines
157 B
Python
10 lines
157 B
Python
from enum import Enum
|
|
|
|
|
|
class EMailClientSettingsName(Enum):
|
|
|
|
host = 'Host'
|
|
port = 'Port'
|
|
user_name = 'UserName'
|
|
credentials = 'Credentials'
|