mirror of
https://github.com/elisspace/core.git
synced 2026-08-30 16:12:01 +00:00
12 lines
221 B
Python
12 lines
221 B
Python
"""The bthome integration models."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class BTHomeData:
|
|
"""Data for the bthome integration."""
|
|
|
|
discovered_event_classes: set[str]
|