grafana/pkg/models/home_dashboard.go

15 lines
181 B
Go
Raw Normal View History

2015-02-03 08:04:35 -06:00
package models
import "time"
type HomeDashboard struct {
Id int64
UserId int64
AccountId int64
Created time.Time
Updated time.Time
Data map[string]interface{}
}