types/proto/channel.proto

12 lines
224 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package pb;
message Channel {
bytes public_key = 1;
2019-02-14 15:55:47 +01:00
string name = 2;
string description = 3;
string thumbnail_url = 4; // url or claim ID?
string cover_url = 5; // url or claim ID?
}