group.go 290 B

123456789101112
  1. package model
  2. // Group .
  3. type Group struct {
  4. Stores []string `json:"stores"`
  5. StoreDatas map[string]*Store `json:"store_datas"`
  6. Total struct {
  7. Space int64 `json:"space"`
  8. FreeSpace int64 `json:"free_space"`
  9. Volumes int64 `json:"volumes"`
  10. } `json:"total"`
  11. }