mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-06 23:00:24 +08:00
21 lines
386 B
Protocol Buffer
21 lines
386 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_report_node_group.proto";
|
|
|
|
message ReportNode {
|
|
int64 id = 1;
|
|
string uniqueId = 2;
|
|
string secret = 3;
|
|
bool isOn = 4;
|
|
string name = 5;
|
|
string location = 6;
|
|
string isp = 7;
|
|
bool isActive = 8;
|
|
bytes statusJSON = 9;
|
|
repeated string allowIPs = 10;
|
|
repeated ReportNodeGroup reportNodeGroups = 11;
|
|
}
|