grafana/pkg/models/home_dashboard.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{}
}