Files
EdgeCommon/pkg/rpc/protos/models/model_file.proto
2022-07-24 09:56:34 +08:00

14 lines
213 B
Protocol Buffer

syntax = "proto3";
option go_package = "./pb";
package pb;
message File {
int64 id = 1;
string filename = 2;
int64 size = 3;
int64 createdAt = 4;
bool isPublic = 5;
string mimeType = 6;
string type = 7;
}