You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
284 B

  1. package storage
  2. import ()
  3. type VolumeInfo struct {
  4. Id VolumeId
  5. Size uint64
  6. RepType ReplicationType
  7. Collection string
  8. Version Version
  9. FileCount int
  10. DeleteCount int
  11. DeletedByteCount uint64
  12. ReadOnly bool
  13. }