grafana/pkg/models/home_dashboard.go
2015-02-03 15:04:35 +01:00

15 lines
181 B
Go

package models
import "time"
type HomeDashboard struct {
Id int64
UserId int64
AccountId int64
Created time.Time
Updated time.Time
Data map[string]interface{}
}