增加DNS套餐相关API

This commit is contained in:
GoEdgeLab
2022-09-13 10:50:26 +08:00
parent f88b4fdccd
commit 1e5072cb13
20 changed files with 7944 additions and 4304 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message NSPlan {
int64 id = 1;
string name = 2;
bool isOn = 3;
float monthlyPrice = 4;
float yearlyPrice = 5;
bytes configJSON = 6;
}