storj/pkg/storage/objects/meta.proto

12 lines
283 B
Protocol Buffer
Raw Normal View History

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