hass-core/homeassistant/components/eufylife_ble/models.py
Brandon Rothweiler 2ed6df9003
Add EufyLife Bluetooth integration (#85907)
Co-authored-by: J. Nick Koston <nick@koston.org>
2023-01-16 18:29:50 -10:00

15 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