mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-24 23:23:08 +00:00
22 lines
241 B
Protocol Buffer
22 lines
241 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package slash.store;
|
|
|
|
option go_package = "gen/store";
|
|
|
|
enum RowStatus {
|
|
ROW_STATUS_UNSPECIFIED = 0;
|
|
|
|
NORMAL = 1;
|
|
|
|
ARCHIVED = 2;
|
|
}
|
|
|
|
enum Visibility {
|
|
VISIBILITY_UNSPECIFIED = 0;
|
|
|
|
WORKSPACE = 1;
|
|
|
|
PUBLIC = 2;
|
|
}
|