mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
16 lines
394 B
Protocol Buffer
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;
|
|
} |