forked from TrueCloudLab/frostfs-node
15 lines
405 B
Protocol Buffer
15 lines
405 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
option go_package = "github.com/nspcc-dev/neofs-node/lib/localstore";
|
||
|
|
||
|
package localstore;
|
||
|
|
||
|
import "object/types.proto";
|
||
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
||
|
|
||
|
message ObjectMeta {
|
||
|
object.Object Object = 1;
|
||
|
bytes PayloadHash = 2 [(gogoproto.nullable) = false, (gogoproto.customtype) = "Hash"];
|
||
|
uint64 PayloadSize = 3;
|
||
|
uint64 StoreEpoch = 4;
|
||
|
}
|