1
0
mirror of https://github.com/home-assistant/core.git synced 2026-06-03 22:24:02 +01:00
Files
core/homeassistant/components/bond/models.py
T
2026-04-30 21:14:48 +02:00

16 lines
261 B
Python

"""The bond integration models."""
from dataclasses import dataclass
from bond_async import BPUPSubscriptions
from .utils import BondHub
@dataclass
class BondData:
"""Data for the bond integration."""
hub: BondHub
bpup_subs: BPUPSubscriptions