1
0
mirror of https://github.com/home-assistant/core.git synced 2025-05-15 11:29:15 +00:00
Brandon Rothweiler 2ed6df9003
Add EufyLife Bluetooth integration ()
Co-authored-by: J. Nick Koston <nick@koston.org>
2023-01-16 18:29:50 -10:00

16 lines
305 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