mirror of
https://github.com/usememos/memos.git
synced 2024-11-10 17:02:21 +08:00
19 lines
356 B
Protocol Buffer
19 lines
356 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 ActivityVersionUpdatePayload {
|
|
string version = 1;
|
|
}
|
|
|
|
message ActivityPayload {
|
|
ActivityMemoCommentPayload memo_comment = 1;
|
|
ActivityVersionUpdatePayload version_update = 2;
|
|
}
|