1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/common/protocol/user.proto
Darien Raymond f049b3cc2b
comments
2016-10-18 00:12:09 +02:00

16 lines
394 B
Protocol Buffer

syntax = "proto3";
package v2ray.core.common.protocol;
option go_package = "protocol";
option java_package = "com.v2ray.core.common.protocol";
option java_outer_classname = "UserProto";
import "v2ray.com/core/common/loader/type.proto";
message User {
uint32 level = 1;
string email = 2;
// Protocol specific account information.
v2ray.core.common.loader.TypedSettings account = 3;
}