1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 16:26:02 -04:00
v2fly/common/protocol/user.proto

16 lines
394 B
Protocol Buffer
Raw Normal View History

2016-09-17 18:41:21 -04:00
syntax = "proto3";
2016-09-26 09:14:16 -04:00
package v2ray.core.common.protocol;
2016-09-17 18:41:21 -04:00
option go_package = "protocol";
2016-09-26 09:14:16 -04:00
option java_package = "com.v2ray.core.common.protocol";
option java_outer_classname = "UserProto";
2016-10-16 08:22:21 -04:00
import "v2ray.com/core/common/loader/type.proto";
2016-09-17 18:41:21 -04:00
message User {
uint32 level = 1;
string email = 2;
2016-10-17 18:12:09 -04:00
// Protocol specific account information.
2016-10-16 08:22:21 -04:00
v2ray.core.common.loader.TypedSettings account = 3;
2016-09-17 18:41:21 -04:00
}