mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
21 lines
347 B
Protocol Buffer
21 lines
347 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "models/model_ns_cluster.proto";
|
|
import "models/model_user.proto";
|
|
|
|
// DNS域名
|
|
message NSDomain {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
bool isOn = 3;
|
|
int64 createdAt = 4;
|
|
bool isDeleted = 5;
|
|
int64 version = 6;
|
|
bytes tsigJSON = 7;
|
|
|
|
NSCluster nsCluster = 30;
|
|
User user = 31;
|
|
} |