mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00: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
|
|
}
|