mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-28 21:46:37 +08:00
13 lines
189 B
Protocol Buffer
13 lines
189 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message Login {
|
|
int64 id = 1;
|
|
string type = 2;
|
|
bytes paramsJSON = 3;
|
|
bool isOn = 4;
|
|
int64 adminId = 5;
|
|
int64 userId = 6;
|
|
} |