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
|