1
0
mirror of https://github.com/home-assistant/core.git synced 2025-08-22 03:40:02 +00:00
Files
core/homeassistant/components/notion/model.py
Erik Montnemery 0c2485bc03 Freeze integration entity descriptions ()
Co-authored-by: J. Nick Koston <nick@koston.org>
2023-12-18 16:28:13 -10:00

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