storj/protos/meta/meta.proto
Kaloyan Raev 8ce889ed1b
ObjectStore (#128)
* WIP ObjectStore

* Remove methods for extended attributes

* List returns metadata too

* No real need to prepend "object" in path

* Serialize metadata

* List retuns []ListItem instead of []Path
2018-07-16 23:44:28 +03:00

12 lines
264 B
Protocol Buffer

// Copyright (C) 2018 Storj Labs, Inc.
// See LICENSE for copying information.
syntax = "proto3";
package meta;
// Serializable is the metadata that will be stored serialized
message Serializable {
string ContentType = 1;
map<string, string> UserDefined= 2;
}