Files
EdgeCommon/pkg/rpc/protos/models/model_file.proto

14 lines
213 B
Protocol Buffer
Raw Normal View History

2020-11-04 15:51:38 +08:00
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;
2022-07-24 09:56:34 +08:00
string mimeType = 6;
string type = 7;
2020-11-04 15:51:38 +08:00
}