mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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;
|
|
}
|