mirror of
https://github.com/LBRYFoundation/types.git
synced 2025-08-31 01:01:25 +00:00
11 lines
224 B
Protocol Buffer
11 lines
224 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pb;
|
|
|
|
message Channel {
|
|
bytes public_key = 1;
|
|
string name = 2;
|
|
string description = 3;
|
|
string thumbnail_url = 4; // url or claim ID?
|
|
string cover_url = 5; // url or claim ID?
|
|
}
|