Created connection_model.py

This commit is contained in:
sTiKyt 2020-08-13 22:58:17 +03:00
parent 64c3ab248e
commit b604e6c24d
No known key found for this signature in database
GPG Key ID: 510E1C3C9B2414B4

View File

@ -0,0 +1,24 @@
class ConnectionModel:
def __init__(self, timeout: float = 16, host: str = "https://google.com"):
self._host = host
self._timeout = timeout
@property
def host(self):
# TODO add verbose output
return self._host
@host.setter
def host(self, new_host: str):
# TODO add verbose output
self._host = new_host
@property
def timeout(self):
# TODO add verbose output
return self._timeout
@timeout.setter
def timeout(self, new_timeout):
# TODO add verbose output
self._timeout = new_timeout