mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 20:40:25 +08:00
12 lines
242 B
Protocol Buffer
12 lines
242 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
// 用户功能定义
|
|
message UserFeature {
|
|
string code = 1; // 代号
|
|
string name = 2; // 名称
|
|
string description = 3; // 描述
|
|
bool supportPlan = 4; // 是否支持套餐
|
|
} |