mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 12:20:27 +08:00
21 lines
354 B
Protocol Buffer
21 lines
354 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_ns_cluster.proto";
|
|
import "models/model_ns_domain.proto";
|
|
|
|
// 线路
|
|
message NSRoute {
|
|
int64 id = 1;
|
|
bool isOn = 2;
|
|
string name = 3;
|
|
bytes rangesJSON = 4;
|
|
bool isDeleted = 5;
|
|
int64 order = 6;
|
|
int64 version = 7;
|
|
|
|
NSCluster nsCluster = 30;
|
|
NSDomain nsDomain = 31;
|
|
} |