Initial commit (code only without large binaries)

This commit is contained in:
robin
2026-02-15 18:58:44 +08:00
commit 35df75498f
9442 changed files with 1495866 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_dns_route.proto";
message DNSDomain {
int64 id = 1;
string name = 2;
bool isOn = 3;
int64 dataUpdatedAt = 4;
string dataError = 5;
int64 countServerRecords = 6;
int64 countAllServers = 13;
bool serversChanged = 7;
int64 countNodeRecords = 8;
int64 countAllNodes = 14;
bool nodesChanged = 9;
repeated DNSRoute routes = 10;
int64 providerId = 11;
int64 countNodeClusters = 12;
bool isUp = 15;
bool isDeleted = 16;
}