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.

Server.cs 755 B

123456789101112131415161718192021222324252627282930
  1. namespace Shadowsocks.WPF.Models
  2. {
  3. public class Server : Shadowsocks.Models.Server
  4. {
  5. /// <summary>
  6. /// Gets or sets the arguments passed to the plugin process.
  7. /// </summary>
  8. public string PluginArgs { get; set; }
  9. public Server()
  10. {
  11. PluginArgs = "";
  12. }
  13. public Server(
  14. string name,
  15. string uuid,
  16. string host,
  17. int port,
  18. string password,
  19. string method,
  20. string plugin = "",
  21. string pluginOpts = "",
  22. string pluginArgs = "")
  23. : base(name, uuid, host, port, password, method, plugin, pluginOpts)
  24. {
  25. PluginArgs = pluginArgs;
  26. }
  27. }
  28. }