mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-10-04 00:06:18 +00:00
11 lines
259 B
Python
11 lines
259 B
Python
![]() |
"""
|
||
|
Dashboard API Key
|
||
|
"""
|
||
|
class DashboardAPIKey:
|
||
|
def __init__(self, Key: str, CreatedAt: str, ExpiredAt: str):
|
||
|
self.Key = Key
|
||
|
self.CreatedAt = CreatedAt
|
||
|
self.ExpiredAt = ExpiredAt
|
||
|
|
||
|
def toJson(self):
|
||
|
return self.__dict__
|