mirror of
https://github.com/elisspace/core.git
synced 2026-08-30 08:02:02 +00:00
10 lines
226 B
Python
10 lines
226 B
Python
"""Define RainMachine data models."""
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class RainMachineSensorDescriptionMixin:
|
|
"""Define an entity description mixin for binary and regular sensors."""
|
|
|
|
api_category: str
|