stats.go 308 B

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