mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
270 B
Protocol Buffer
18 lines
270 B
Protocol Buffer
2 years ago
|
syntax = "proto3";
|
||
|
|
||
10 months ago
|
package memos.api.v1;
|
||
2 years ago
|
|
||
10 months ago
|
option go_package = "gen/api/v1";
|
||
2 years ago
|
|
||
|
enum RowStatus {
|
||
|
ROW_STATUS_UNSPECIFIED = 0;
|
||
|
ACTIVE = 1;
|
||
|
ARCHIVED = 2;
|
||
|
}
|
||
1 year ago
|
|
||
|
// Used internally for obfuscating the page token.
|
||
|
message PageToken {
|
||
|
int32 limit = 1;
|
||
|
int32 offset = 2;
|
||
|
}
|