github.com/xraypb/xray-core@v1.6.6/common/protocol/user.proto (about)

     1  syntax = "proto3";
     2  
     3  package xray.common.protocol;
     4  option csharp_namespace = "Xray.Common.Protocol";
     5  option go_package = "github.com/xraypb/xray-core/common/protocol";
     6  option java_package = "com.xray.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    xray.common.serial.TypedMessage account = 3;
    19  }