namespace ScadaLink.NotificationService;
///
/// Configuration options for the Notification Service.
/// Most SMTP configuration is stored in the database (SmtpConfiguration entity).
/// This provides fallback defaults and operational limits.
///
public class NotificationOptions
{
/// Default connection timeout for SMTP connections.
public int ConnectionTimeoutSeconds { get; set; } = 30;
/// Maximum concurrent SMTP connections.
public int MaxConcurrentConnections { get; set; } = 5;
}