You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
v2ray-core/common/protocol/user.proto

12 lines
221 B

syntax = "proto3";
import "google/protobuf/any.proto";
package com.v2ray.core.common.protocol;
option go_package = "protocol";
message User {
uint32 level = 1;
string email = 2;
google.protobuf.Any account = 3;
}