mirror of
https://github.com/home-assistant/core.git
synced 2026-07-16 11:03:09 +01:00
d0575b6b1b
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
21 lines
363 B
Python
21 lines
363 B
Python
"""Constants for the zone component."""
|
|
|
|
from enum import StrEnum
|
|
|
|
CONF_PASSIVE = "passive"
|
|
DOMAIN = "zone"
|
|
HOME_ZONE = "home"
|
|
|
|
|
|
class ZoneEntityStateAttribute(StrEnum):
|
|
"""State attributes for zone entities."""
|
|
|
|
RADIUS = "radius"
|
|
PASSIVE = "passive"
|
|
PERSONS = "persons"
|
|
EDITABLE = "editable"
|
|
|
|
|
|
ATTR_PASSIVE = "passive"
|
|
ATTR_RADIUS = "radius"
|