github.com/imannamdari/v2ray-core/v5@v5.0.5/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/imannamdari/v2ray-core/v5/common/protocol";
     6  option java_package = "com.v2ray.core.common.protocol";
     7  option java_multiple_files = true;
     8  
     9  import "google/protobuf/any.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    google.protobuf.Any account = 3;
    19  }