15 lines
222 B
Protocol Buffer
15 lines
222 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message HTTPDNSDomain {
|
|
int64 id = 1;
|
|
int64 appId = 2;
|
|
string domain = 3;
|
|
bool isOn = 4;
|
|
int64 createdAt = 5;
|
|
int64 updatedAt = 6;
|
|
int64 ruleCount = 7;
|
|
}
|