15 lines
239 B
Protocol Buffer
15 lines
239 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
package cmvr.config;
|
||
|
|
|
||
|
|
message RH56DFTPDexHandConfig{
|
||
|
|
string id = 1;
|
||
|
|
string ip = 2;
|
||
|
|
int32 port = 3;
|
||
|
|
bool enable = 4;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
message DexHandConfig{
|
||
|
|
repeated RH56DFTPDexHandConfig rh56dftp_dexhands = 1;
|
||
|
|
}
|