14 lines
345 B
Go
14 lines
345 B
Go
package sensor
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"git.loafle.net/overflow/commons-go/model/meta"
|
|
)
|
|
|
|
type SensorItemDependency struct {
|
|
ID json.Number `json:"id,Number,omitempty"`
|
|
DisplayItem *meta.MetaSensorDisplayItem `json:"displayItem,omitempty"`
|
|
SensorItem *meta.MetaSensorItemKey `json:"sensorItem,omitempty"`
|
|
}
|