2016-09-17 18:41:21 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2016-09-26 09:14:16 -04:00
|
|
|
package v2ray.core.common.protocol;
|
2016-12-22 18:24:28 -05:00
|
|
|
option csharp_namespace = "V2Ray.Core.Common.Protocol";
|
2022-01-02 10:16:23 -05:00
|
|
|
option go_package = "github.com/v2fly/v2ray-core/v5/common/protocol";
|
2016-09-26 09:14:16 -04:00
|
|
|
option java_package = "com.v2ray.core.common.protocol";
|
2017-02-03 17:15:10 -05:00
|
|
|
option java_multiple_files = true;
|
2016-09-26 09:14:16 -04:00
|
|
|
|
2021-06-23 09:34:03 -04:00
|
|
|
import "google/protobuf/any.proto";
|
2016-09-17 18:41:21 -04:00
|
|
|
|
2017-02-13 16:39:55 -05:00
|
|
|
// User is a generic user for all procotols.
|
2016-09-17 18:41:21 -04:00
|
|
|
message User {
|
|
|
|
uint32 level = 1;
|
|
|
|
string email = 2;
|
2016-10-17 18:12:09 -04:00
|
|
|
|
2020-10-04 20:36:40 -04:00
|
|
|
// Protocol specific account information. Must be the account proto in one of
|
|
|
|
// the proxies.
|
2021-06-19 09:36:54 -04:00
|
|
|
google.protobuf.Any account = 3;
|
2020-08-24 08:10:26 -04:00
|
|
|
}
|