activity.proto 356 B

12345678910111213141516171819
  1. syntax = "proto3";
  2. package memos.store;
  3. option go_package = "gen/store";
  4. message ActivityMemoCommentPayload {
  5. int32 memo_id = 1;
  6. int32 related_memo_id = 2;
  7. }
  8. message ActivityVersionUpdatePayload {
  9. string version = 1;
  10. }
  11. message ActivityPayload {
  12. ActivityMemoCommentPayload memo_comment = 1;
  13. ActivityVersionUpdatePayload version_update = 2;
  14. }