namespace StellaOps.Notifier.Worker.Options;
public sealed class EgressSloOptions
{
///
/// Webhook endpoint to receive SLO delivery signals. When null/empty, publishing is disabled.
///
public string? Webhook { get; set; }
///
/// Request timeout in seconds for the webhook call.
///
public int TimeoutSeconds { get; set; } = 5;
public bool Enabled => !string.IsNullOrWhiteSpace(Webhook);
}