mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-09 00:20:25 +08:00
13 lines
200 B
Protocol Buffer
13 lines
200 B
Protocol Buffer
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;
|
|
} |