namespace Shadowsocks.Interop.V2Ray.Outbound { public class ProxySettingsObject { /// /// Gets or sets the tag of the outbound /// used as the proxy. /// public string Tag { get; set; } public ProxySettingsObject() { Tag = ""; } } }