Files
EdgeCommon/pkg/rpc/protos/models/model_ns_plan.proto

13 lines
200 B
Protocol Buffer
Raw Normal View History

2022-09-13 10:50:26 +08:00
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;
}