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

13 lines
239 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
option go_package = "./pb";
package pb;
message DNSIssue {
string target = 1;
int64 targetId = 2;
string type = 3;
string description = 4;
map<string, string> params = 5;
bool mustFix = 6; // 是否必须修复
}