memos/proto/store/inbox.proto

16 lines
242 B
Protocol Buffer
Raw Permalink Normal View History

2023-10-26 20:10:19 +03:00
syntax = "proto3";
package memos.store;
option go_package = "gen/store";
message InboxMessage {
enum Type {
TYPE_UNSPECIFIED = 0;
2024-05-13 15:03:04 +03:00
MEMO_COMMENT = 1;
VERSION_UPDATE = 2;
}
Type type = 1;
optional int32 activity_id = 2;
2023-10-26 20:10:19 +03:00
}