mirror of
https://github.com/home-assistant/core.git
synced 2025-04-27 02:37:50 +00:00
18 lines
361 B
Python
18 lines
361 B
Python
"""The led ble integration models."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from led_ble import LEDBLE
|
|
|
|
from homeassistant.helpers.update_coordinator import DataUpdateCoordinator
|
|
|
|
|
|
@dataclass
|
|
class LEDBLEData:
|
|
"""Data for the led ble integration."""
|
|
|
|
title: str
|
|
device: LEDBLE
|
|
coordinator: DataUpdateCoordinator
|