8 lines
134 B
Go
8 lines
134 B
Go
|
|
package models
|
||
|
|
|
||
|
|
type SensorItem struct {
|
||
|
|
Id int64 `json:"id"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
AuthKey string `json:"authKey"`
|
||
|
|
}
|