Files
WGDashboard/src/modules/DashboardAPIKey.py

11 lines
259 B
Python
Raw Normal View History

2025-05-08 19:05:46 +08:00
"""
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__