graphicek/server/models/sensors.go

9 lines
250 B
Go
Raw Normal View History

2024-03-29 20:49:08 +01:00
package models
type SensorItem struct {
Id int64 `json:"id" db:"id"`
Name string `json:"name" db:"name"`
AuthKey string `json:"authKey" db:"auth_key"`
LastContactAt *int64 `json:"lastContactAt" db:"last_contact_at"`
2024-03-29 20:49:08 +01:00
}