mirror of
https://github.com/home-assistant/core.git
synced 2026-05-28 03:06:30 +01:00
8e0c26bf86
Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
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
|