Channel.proto 368 B

123456789101112131415
  1. syntax = "proto2";
  2. message ChannelMetadata {
  3. // Channel Title
  4. optional string title = 1;
  5. // Channel Description
  6. optional string description = 2;
  7. // Wether to display channel to the public
  8. optional bool is_public = 3;
  9. // ISO_639-1 Language [Code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes)
  10. optional string language = 4;
  11. }