mirror of
https://github.com/home-assistant/core.git
synced 2025-05-03 21:49:17 +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
|