Sluggard/sluggard/dashboard.py
2024-10-24 16:35:22 +02:00

15 lines
348 B
Python

class Dashboard:
def __init__(
self,
dashboard_id: str,
key: str,
title: str,
isHidden: bool,
canBeHidden: bool
) -> None:
self.dashboard_id = dashboard_id
self.key = key
self.title = title
self.isHidden = isHidden
self.canBeHidden = canBeHidden