mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-07-31 21:00:10 +08:00
16 lines
284 B
Go
16 lines
284 B
Go
package storage
|
|
|
|
import ()
|
|
|
|
type VolumeInfo struct {
|
|
Id VolumeId
|
|
Size uint64
|
|
RepType ReplicationType
|
|
Collection string
|
|
Version Version
|
|
FileCount int
|
|
DeleteCount int
|
|
DeletedByteCount uint64
|
|
ReadOnly bool
|
|
}
|