1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-21 02:18:47 +00:00
Files
2024-03-08 14:51:32 +01:00

18 lines
297 B
Python

"""The bond integration models."""
from __future__ import annotations
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