mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 19:27:51 +00:00
13 lines
278 B
Python
13 lines
278 B
Python
"""Define Notion model mixins."""
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from aionotion.listener.models import ListenerKind
|
|
|
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
class NotionEntityDescription:
|
|
"""Define an description for Notion entities."""
|
|
|
|
listener_kind: ListenerKind
|