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.

14 lines
259 B

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