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.
|
- using System;
- using System.Text.Json.Serialization;
-
- namespace Shadowsocks.Models
- {
- public interface IServer : IEquatable<IServer>
- {
- [JsonPropertyName("server")]
- public string Host { get; set; }
- [JsonPropertyName("server_port")]
- public int Port { get; set; }
- public string Password { get; set; }
- public string Method { get; set; }
- public string Plugin { get; set; }
- public string PluginOpts { get; set; }
- [JsonPropertyName("remarks")]
- public string Name { get; set; }
- }
- }
|