github.com/v2fly/v2ray-core/v4@v4.45.2/common/protocol/user.proto (about)

     1  syntax = "proto3";
     2  
     3  package v2ray.core.common.protocol;
     4  option csharp_namespace = "V2Ray.Core.Common.Protocol";
     5  option go_package = "github.com/v2fly/v2ray-core/v4/common/protocol";
     6  option java_package = "com.v2ray.core.common.protocol";
     7  option java_multiple_files = true;
     8  
     9  import "common/serial/typed_message.proto";
    10  
    11  // User is a generic user for all procotols.
    12  message User {
    13    uint32 level = 1;
    14    string email = 2;
    15  
    16    // Protocol specific account information. Must be the account proto in one of
    17    // the proxies.
    18    v2ray.core.common.serial.TypedMessage account = 3;
    19  }