stats.go 162 B

1234567891011
  1. package models
  2. type SystemStats struct {
  3. DashboardCount int
  4. UserCount int
  5. OrgCount int
  6. }
  7. type GetSystemStatsQuery struct {
  8. Result *SystemStats
  9. }