mirror of
https://github.com/home-assistant/core.git
synced 2025-06-07 06:37:07 +00:00
12 lines
268 B
Python
12 lines
268 B
Python
"""Define Notion model mixins."""
|
|
from dataclasses import dataclass
|
|
|
|
from aionotion.sensor.models import ListenerKind
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class NotionEntityDescriptionMixin:
|
|
"""Define an description mixin Notion entities."""
|
|
|
|
listener_kind: ListenerKind
|