Series.proto 612 B

12345678910111213141516171819
  1. syntax = "proto2";
  2. message SeriesMetadata {
  3. optional string title = 1;
  4. optional string description = 2;
  5. // index into external [assets array](#.Assets)
  6. optional uint32 cover_photo = 3;
  7. // Person(s) referenced by PersonId involved in this Series
  8. repeated uint64 persons = 4 [packed=true];
  9. }
  10. message SeasonMetadata {
  11. optional string title = 1;
  12. optional string description = 2;
  13. // index into external [assets array](#.Assets)
  14. optional uint32 cover_photo = 3;
  15. // Person(s) referenced by PersonId involved in this Season
  16. repeated uint64 persons = 4 [packed=true];
  17. }