1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-22 20:09:35 +00:00
Files
core/homeassistant/components/baf/models.py
2024-03-08 14:51:32 +01:00

27 lines
392 B
Python

"""The baf integration models."""
from __future__ import annotations
import asyncio
from dataclasses import dataclass
from aiobafi6 import Device
@dataclass
class BAFData:
"""Data for the baf integration."""
device: Device
run_future: asyncio.Future
@dataclass
class BAFDiscovery:
"""A BAF Discovery."""
ip_address: str
name: str
uuid: str
model: str