This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/rpc/protos/model_dns_record.proto
T
2020-11-15 11:57:54 +08:00

13 lines
173 B
Protocol Buffer

syntax = "proto3";
option go_package = "./pb";
package pb;
message DNSRecord {
string id = 1;
string name = 2;
string value = 3;
string type = 4;
string route = 5;
}