mirror of
https://github.com/LBRYFoundation/types.git
synced 2025-08-23 17:47:32 +00:00
8 lines
92 B
Protocol Buffer
8 lines
92 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
message File {
|
|
string name = 1;
|
|
uint64 size = 2;
|
|
}
|