1
0
mirror of https://github.com/home-assistant/core.git synced 2025-07-29 16:17:20 +00:00

19 lines
350 B
Python

"""The ld2410 ble integration models."""
from __future__ import annotations
from dataclasses import dataclass
from ld2410_ble import LD2410BLE
from .coordinator import LD2410BLECoordinator
@dataclass
class LD2410BLEData:
"""Data for the ld2410 ble integration."""
title: str
device: LD2410BLE
coordinator: LD2410BLECoordinator