user.proto 547 B

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