1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-20 02:48:57 +00:00
Files
core/homeassistant/components/baf/models.py
2024-05-08 22:37:14 +02:00

16 lines
229 B
Python

"""The baf integration models."""
from __future__ import annotations
from dataclasses import dataclass
@dataclass
class BAFDiscovery:
"""A BAF Discovery."""
ip_address: str
name: str
uuid: str
model: str