mirror of
https://github.com/usememos/memos.git
synced 2024-11-05 04:50:21 +03:00
20 lines
356 B
Protocol Buffer
20 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;
|
|
}
|