mirror of
https://github.com/usememos/memos.git
synced 2024-11-14 18:59:53 +08:00
18 lines
251 B
Protocol Buffer
18 lines
251 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package memos.api.v2;
|
||
|
|
||
|
option go_package = "gen/api/v2";
|
||
|
|
||
|
message MemoRelation {
|
||
|
int32 memo_id = 1;
|
||
|
int32 related_memo_id = 2;
|
||
|
|
||
|
enum Type {
|
||
|
TYPE_UNSPECIFIED = 0;
|
||
|
REFERENCE = 1;
|
||
|
COMMENT = 2;
|
||
|
}
|
||
|
Type type = 3;
|
||
|
}
|