public TcpConfig(string name, int port, GatewayDestination destination) { Name = name; Port = port; Destination = destination; }
public HttpRouteConfig(HttpRouteMatchRule match, GatewayDestination destination, string name = default(string)) { Name = name; Match = match; Destination = destination; }