This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeCommon/pkg/rpc/protos/models/model_admin_list.proto
T

15 lines
296 B
Protocol Buffer

syntax = "proto3";
option go_package = "./pb";
package pb;
import "models/model_admin_module.proto";
message AdminModuleList {
int64 adminId = 1;
bool isSuper = 2;
repeated AdminModule Modules = 3;
string fullname = 4;
string theme = 5; // 风格模板
string lang = 6; // 界面语言
}