1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-26 21:05:18 +00:00
Files
core/homeassistant/components/eufylife_ble/models.py
2024-03-08 14:15:26 +01:00

17 lines
306 B
Python

"""Models for the EufyLife integration."""
from __future__ import annotations
from dataclasses import dataclass
from eufylife_ble_client import EufyLifeBLEDevice
@dataclass
class EufyLifeData:
"""Data for the EufyLife integration."""
address: str
model: str
client: EufyLifeBLEDevice