Files
WGDashboard/src/modules/DashboardAPIKey.py
2025-08-20 15:06:27 +08:00

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__