17 lines
379 B
Go
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
|
|
}
|