2023-04-21 23:52:57 +00:00
|
|
|
"""Define Notion model mixins."""
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
2024-02-04 21:35:08 +00:00
|
|
|
from aionotion.listener.models import ListenerKind
|
2023-04-21 23:52:57 +00:00
|
|
|
|
|
|
|
|
2024-01-17 01:00:45 +00:00
|
|
|
@dataclass(frozen=True, kw_only=True)
|
|
|
|
class NotionEntityDescription:
|
|
|
|
"""Define an description for Notion entities."""
|
2023-04-21 23:52:57 +00:00
|
|
|
|
|
|
|
listener_kind: ListenerKind
|