12 lines
283 B
Protocol Buffer
12 lines
283 B
Protocol Buffer
|
// Copyright (C) 2018 Storj Labs, Inc.
|
||
|
// See LICENSE for copying information.
|
||
|
|
||
|
syntax = "proto3";
|
||
|
|
||
|
package objects;
|
||
|
|
||
|
// SerializableMeta is the object metadata that will be stored serialized
|
||
|
message SerializableMeta {
|
||
|
string ContentType = 1;
|
||
|
map<string, string> UserDefined = 2;
|
||
|
}
|