You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

InboundConfigurationObject.cs 589 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Text.Json.Serialization;
  3. namespace Shadowsocks.Interop.V2Ray.Protocols.Shadowsocks
  4. {
  5. public class InboundConfigurationObject
  6. {
  7. public string? Email { get; set; }
  8. public string Method { get; set; }
  9. public string Password { get; set; }
  10. public int? Level { get; set; }
  11. public string Network { get; set; }
  12. public InboundConfigurationObject()
  13. {
  14. Method = "chacha20-ietf-poly1305";
  15. Password = new Guid().ToString();
  16. Network = "tcp,udp";
  17. }
  18. }
  19. }