Created
August 7, 2020 00:11
-
-
Save abrookins/b38303075c9de3d854b2895a85b9e28e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@dataclass(frozen=True, eq=True) | |
class SiteStats: | |
"""Reporting stats for a site.""" | |
last_reporting_time: datetime.datetime | |
meter_reading_count: int | |
max_wh_generated: float | |
min_wh_generated: float | |
max_capacity: float |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment