using System.Collections.Generic; namespace Shadowsocks.Interop.V2Ray.Protocols.Shadowsocks { public class OutboundConfigurationObject { public List Servers { get; set; } public OutboundConfigurationObject() { Servers = new(); } public OutboundConfigurationObject(string address, int port, string method, string password) { Servers = new() { new(address, port, method, password), }; } } }