chore: initial inbox store model

This commit is contained in:
Steven
2023-10-27 01:10:19 +08:00
parent 59f0ee862d
commit e5978a70f5
8 changed files with 358 additions and 0 deletions

12
proto/store/inbox.proto Normal file
View File

@@ -0,0 +1,12 @@
syntax = "proto3";
package memos.store;
option go_package = "gen/store";
message InboxMessage {
string title = 1;
string content = 2;
string link = 3;
optional int32 activity_id = 4;
}