Files
EdgeCommon/pkg/rpc/protos/models/model_ip_list.proto

16 lines
253 B
Protocol Buffer
Raw Normal View History

2020-11-07 19:40:32 +08:00
syntax = "proto3";
option go_package = "./pb";
package pb;
message IPList {
int64 id = 1;
bool isOn = 2;
string type = 3;
string name = 4;
string code = 5;
bytes timeoutJSON = 6;
2021-06-23 13:13:58 +08:00
bool isPublic = 7;
string description = 8;
2021-11-17 16:15:01 +08:00
bool isGlobal = 9;
2020-11-07 19:40:32 +08:00
}