namespace ScadaLink.ExternalSystemGateway;
///
/// Configuration options for the External System Gateway component.
///
public class ExternalSystemGatewayOptions
{
/// Default HTTP request timeout per external system call.
public TimeSpan DefaultHttpTimeout { get; set; } = TimeSpan.FromSeconds(30);
/// Maximum number of concurrent HTTP connections per external system.
public int MaxConcurrentConnectionsPerSystem { get; set; } = 10;
}