core/homeassistant/components/eufylife_ble/models.py

16 lines
305 B
Python
Raw Normal View History

"""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