Files
board-mate/api-customer/src/models/AuthData.py
2026-01-02 16:17:49 +01:00

19 lines
352 B
Python

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