15 lines
331 B
Go
15 lines
331 B
Go
// -*- Mode: Go; indent-tabs-mode: t -*-
|
|
//
|
|
// Copyright (C) 2018 IOTech Ltd
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package models
|
|
|
|
// AsyncValues is the struct for sending Device readings asynchronously via ProtocolDrivers
|
|
type AsyncValues struct {
|
|
DeviceName string
|
|
SourceName string
|
|
CommandValues []*CommandValue
|
|
}
|