types/proto/file.proto

8 lines
92 B
Protocol Buffer

syntax = "proto3";
package pb;
message File {
string name = 1;
uint64 size = 2;
}