mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 08:26:41 +01:00
13 lines
311 B
Python
13 lines
311 B
Python
"""Data models for the cover integration."""
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from homeassistant.helpers.automation import DomainSpec
|
|
|
|
|
|
@dataclass(frozen=True, slots=True)
|
|
class CoverDomainSpec(DomainSpec):
|
|
"""DomainSpec with a target value for comparison."""
|
|
|
|
target_value: str | bool | None = None
|