mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-22 15:06:18 +01: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
|