github.com/Uhtred009/v2ray-core-1@v4.31.2+incompatible/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 = "v2ray.com/core/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  
    13  message User {
    14    uint32 level = 1;
    15    string email = 2;
    16    uint64 rate  = 4;
    17  
    18    // Protocol specific account information. Must be the account proto in one of
    19    // the proxies.
    20    v2ray.core.common.serial.TypedMessage account = 3;
    21  }