Bounty.proto 508 B

12345678910111213
  1. syntax = "proto2";
  2. message BountyMetadata {
  3. optional string title = 1; // Bounty title
  4. optional string description = 2; // Bounty description
  5. optional uint64 discussionThread = 3; // Id of the forum thread used to discuss the bounty
  6. optional string banner_image_uri = 4; // Image uri of the bounty's banner
  7. }
  8. message BountyWorkData {
  9. optional string title = 1; // Title of the work
  10. optional string description = 2; // Description which contains the work itself as a URL, a BLOB, or just text
  11. }