stats.go 288 B

1234567891011121314151617181920
  1. package models
  2. type SystemStats struct {
  3. DashboardCount int
  4. UserCount int
  5. OrgCount int
  6. }
  7. type DataSourceStats struct {
  8. Count int
  9. Type string
  10. }
  11. type GetSystemStatsQuery struct {
  12. Result *SystemStats
  13. }
  14. type GetDataSourceStatsQuery struct {
  15. Result []*DataSourceStats
  16. }