mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 17:38:45 -05:00
14 lines
316 B
Protocol Buffer
14 lines
316 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 "google/protobuf/any.proto";
|
|
|
|
message User {
|
|
uint32 level = 1;
|
|
string email = 2;
|
|
google.protobuf.Any account = 3;
|
|
} |