13 lines
146 B
Go
13 lines
146 B
Go
package storage
|
|
|
|
import (
|
|
)
|
|
|
|
type VolumeInfo struct {
|
|
Id VolumeId
|
|
Size int64
|
|
RepType ReplicationType
|
|
FileCount int
|
|
DeleteCount int
|
|
}
|