Home Assistant Unofficial Reference 2024.12.1
models.py
Go to the documentation of this file.
1 """Models for the EufyLife integration."""
2 
3 from __future__ import annotations
4 
5 from dataclasses import dataclass
6 
7 from eufylife_ble_client import EufyLifeBLEDevice
8 
9 
10 @dataclass
12  """Data for the EufyLife integration."""
13 
14  address: str
15  model: str
16  client: EufyLifeBLEDevice