seaweedfs/weed-fs/src/pkg/storage/volume_info.go

14 lines
174 B
Go
Raw Normal View History

2012-08-24 06:24:32 +00:00
package storage
import (
)
2012-08-24 06:24:32 +00:00
type VolumeInfo struct {
2012-09-11 00:08:52 +00:00
Id VolumeId
Size int64
RepType ReplicationType
2012-10-10 03:53:31 +00:00
FileCount int
DeleteCount int
2012-11-24 01:03:27 +00:00
DeletedByteCount uint32
}