mirror of
https://github.com/usememos/memos.git
synced 2024-11-10 17:02:21 +08:00
15 lines
252 B
Protocol Buffer
15 lines
252 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package memos.store;
|
|
|
|
option go_package = "gen/store";
|
|
|
|
message InboxMessage {
|
|
enum Type {
|
|
TYPE_UNSPECIFIED = 0;
|
|
TYPE_MEMO_COMMENT = 1;
|
|
TYPE_VERSION_UPDATE = 2;
|
|
}
|
|
Type type = 1;
|
|
optional int32 activity_id = 2;
|
|
}
|