12 lines
162 B
Go
12 lines
162 B
Go
package models
|
|
|
|
type SystemStats struct {
|
|
DashboardCount int
|
|
UserCount int
|
|
OrgCount int
|
|
}
|
|
|
|
type GetSystemStatsQuery struct {
|
|
Result *SystemStats
|
|
}
|