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.

ServerObject.cs 616 B

12345678910111213141516171819202122232425
  1. namespace Shadowsocks.Interop.V2Ray.Protocols.Trojan
  2. {
  3. public class ServerObject
  4. {
  5. public string Address { get; set; }
  6. public int Port { get; set; }
  7. public string Password { get; set; }
  8. public string? Email { get; set; }
  9. public int? Level { get; set; }
  10. public ServerObject()
  11. {
  12. Address = "";
  13. Port = 0;
  14. Password = "";
  15. }
  16. public ServerObject(string address, int port, string password)
  17. {
  18. Address = address;
  19. Port = port;
  20. Password = password;
  21. }
  22. }
  23. }