Fix things
This commit is contained in:
19
api-customer/src/models/AuthData.py
Normal file
19
api-customer/src/models/AuthData.py
Normal file
@@ -0,0 +1,19 @@
|
||||
class AuthData:
|
||||
|
||||
_token : str
|
||||
_client_id : str
|
||||
|
||||
def __init__(self):
|
||||
pass
|
||||
|
||||
def get_token(self):
|
||||
return self._token
|
||||
|
||||
def set_token(self, token:str):
|
||||
self._token = token
|
||||
|
||||
def get_client_id(self):
|
||||
return self._client_id
|
||||
|
||||
def set_client_id(self, client_id:str):
|
||||
self._client_id = client_id
|
||||
Reference in New Issue
Block a user