d766aae436
Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: frenck <[email protected]>
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
|