mirror of
https://github.com/home-assistant/core.git
synced 2025-07-01 02:17:08 +00:00
18 lines
297 B
Python
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
|