storj/pkg/storage/objects/meta.proto
Kaloyan Raev 7e136db9cf
Cleanup metadata across layers (#180)
* Cleanup metadata across layers

* Fix pointer db tests
2018-07-30 21:57:50 +03:00

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;
}