mirror of
https://github.com/home-assistant/core.git
synced 2026-07-05 05:35:29 +01:00
11 lines
240 B
Python
11 lines
240 B
Python
"""Constants for the remote component."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class RemoteEntityStateAttribute(StrEnum):
|
|
"""State attributes for remote entities."""
|
|
|
|
ACTIVITY_LIST = "activity_list"
|
|
CURRENT_ACTIVITY = "current_activity"
|