1
0
mirror of https://github.com/home-assistant/core.git synced 2026-07-16 11:03:09 +01:00
Files
core/homeassistant/components/zone/const.py
T
2026-07-09 11:35:01 -04:00

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"