EdgexAgent/device-gps-go/pkg/models/discovereddevice.go
2025-07-10 20:30:06 +08:00

17 lines
379 B
Go

//
// Copyright (C) 2023 IOTech Ltd
//
// SPDX-License-Identifier: Apache-2.0
package models
import "github.com/edgexfoundry/go-mod-core-contracts/v4/models"
// DiscoveredDevice defines the required information for a found device.
type DiscoveredDevice struct {
Name string
Protocols map[string]models.ProtocolProperties
Description string
Labels []string
}