mirror of
https://git.xeondev.com/LR/S.git
synced 2026-02-04 06:55:06 +01:00
17 lines
295 B
Protocol Buffer
17 lines
295 B
Protocol Buffer
syntax = "proto3";
|
|
package proto;
|
|
|
|
option go_package = "beyond-go/proto/pbsscommon;pbsscommon";
|
|
|
|
enum ObjStateType {
|
|
ObjStateNormal = 0;
|
|
ObjStateAbnormal = 1;
|
|
}
|
|
message OBJ_STATE {
|
|
string objid = 1;
|
|
ObjStateType state = 2;
|
|
}
|
|
message OBJ_LIST {
|
|
repeated string obj_ids = 1;
|
|
}
|