user.proto 544 B

123456789101112131415161718
  1. syntax = "proto3";
  2. package v2ray.core.common.protocol;
  3. option csharp_namespace = "V2Ray.Core.Common.Protocol";
  4. option go_package = "protocol";
  5. option java_package = "com.v2ray.core.common.protocol";
  6. option java_multiple_files = true;
  7. import "v2ray.com/core/common/serial/typed_message.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 the proxies.
  13. v2ray.core.common.serial.TypedMessage account = 3;
  14. }