mirror of
https://github.com/home-assistant/core.git
synced 2026-06-01 13:14:35 +01:00
d766aae436
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: frenck <195327+frenck@users.noreply.github.com>
14 lines
193 B
Python
14 lines
193 B
Python
"""The baf integration models."""
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class BAFDiscovery:
|
|
"""A BAF Discovery."""
|
|
|
|
ip_address: str
|
|
name: str
|
|
uuid: str
|
|
model: str
|