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