mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-18 21:19:44 +00:00
14 lines
159 B
Protocol Buffer
14 lines
159 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package slash.api.v2;
|
|
|
|
option go_package = "gen/api/v2";
|
|
|
|
enum RowStatus {
|
|
ROW_STATUS_UNSPECIFIED = 0;
|
|
|
|
NORMAL = 1;
|
|
|
|
ARCHIVED = 2;
|
|
}
|