mirror of https://github.com/v2ray/v2ray-core
12 lines
221 B
Protocol Buffer
12 lines
221 B
Protocol Buffer
|
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;
|
||
|
}
|