mirror of
https://github.com/usememos/memos.git
synced 2024-11-16 19:56:11 +08:00
14 lines
241 B
Protocol Buffer
14 lines
241 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package memos.store;
|
|
|
|
option go_package = "gen/store";
|
|
|
|
message ActivityMemoCommentPayload {
|
|
int32 memo_id = 1;
|
|
int32 related_memo_id = 2;
|
|
}
|
|
|
|
message ActivityPayload {
|
|
ActivityMemoCommentPayload memo_comment = 1;
|
|
}
|