mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
15 lines
181 B
Go
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{}
|
|
}
|