1
0
mirror of https://github.com/elisspace/core.git synced 2026-08-29 15:43:55 +00:00
Files
2023-01-05 16:15:03 -10:00

18 lines
349 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