1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-16 11:59:16 +00:00

12 lines
275 B
Python

"""Define Notion model mixins."""
from dataclasses import dataclass
from aionotion.sensor.models import ListenerKind
@dataclass(frozen=True, kw_only=True)
class NotionEntityDescription:
"""Define an description for Notion entities."""
listener_kind: ListenerKind