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.

IServer.cs 564 B

12345678910111213141516171819
  1. using System;
  2. using System.Text.Json.Serialization;
  3. namespace Shadowsocks.Models
  4. {
  5. public interface IServer : IEquatable<IServer>
  6. {
  7. [JsonPropertyName("server")]
  8. public string Host { get; set; }
  9. [JsonPropertyName("server_port")]
  10. public int Port { get; set; }
  11. public string Password { get; set; }
  12. public string Method { get; set; }
  13. public string Plugin { get; set; }
  14. public string PluginOpts { get; set; }
  15. [JsonPropertyName("remarks")]
  16. public string Name { get; set; }
  17. }
  18. }