1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 21:45:24 +00:00
v2fly/common/protocol/user.proto

14 lines
316 B
Protocol Buffer
Raw Normal View History

2016-09-17 22:41:21 +00:00
syntax = "proto3";
2016-09-26 13:14:16 +00:00
package v2ray.core.common.protocol;
2016-09-17 22:41:21 +00:00
option go_package = "protocol";
2016-09-26 13:14:16 +00:00
option java_package = "com.v2ray.core.common.protocol";
option java_outer_classname = "UserProto";
import "google/protobuf/any.proto";
2016-09-17 22:41:21 +00:00
message User {
uint32 level = 1;
string email = 2;
google.protobuf.Any account = 3;
}