mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
12 lines
181 B
Go
12 lines
181 B
Go
package models
|
|
|
|
type TotalPublicDashboard struct {
|
|
TotalCount float64
|
|
IsEnabled bool
|
|
ShareType string
|
|
}
|
|
|
|
type Metrics struct {
|
|
TotalPublicDashboards []*TotalPublicDashboard
|
|
}
|