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