mirror of https://github.com/home-assistant/core
17 lines
306 B
Python
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
|