mirror of
https://github.com/usememos/memos.git
synced 2024-11-05 04:50:21 +03:00
16 lines
242 B
Protocol Buffer
16 lines
242 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package memos.store;
|
|
|
|
option go_package = "gen/store";
|
|
|
|
message InboxMessage {
|
|
enum Type {
|
|
TYPE_UNSPECIFIED = 0;
|
|
MEMO_COMMENT = 1;
|
|
VERSION_UPDATE = 2;
|
|
}
|
|
Type type = 1;
|
|
optional int32 activity_id = 2;
|
|
}
|