21 lines
288 B
Go
21 lines
288 B
Go
package models
|
|
|
|
type SystemStats struct {
|
|
DashboardCount int
|
|
UserCount int
|
|
OrgCount int
|
|
}
|
|
|
|
type DataSourceStats struct {
|
|
Count int
|
|
Type string
|
|
}
|
|
|
|
type GetSystemStatsQuery struct {
|
|
Result *SystemStats
|
|
}
|
|
|
|
type GetDataSourceStatsQuery struct {
|
|
Result []*DataSourceStats
|
|
}
|