12 lines
255 B
Python
12 lines
255 B
Python
|
"""Define Notion model mixins."""
|
||
|
from dataclasses import dataclass
|
||
|
|
||
|
from aionotion.sensor.models import ListenerKind
|
||
|
|
||
|
|
||
|
@dataclass
|
||
|
class NotionEntityDescriptionMixin:
|
||
|
"""Define an description mixin Notion entities."""
|
||
|
|
||
|
listener_kind: ListenerKind
|