mirror of
https://github.com/home-assistant/core.git
synced 2026-05-30 12:14:20 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
16 lines
261 B
Python
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
|