namespace SQLVision.Services.Configuration; public class RetryOptions { public bool Enabled { get; set; } = true; public int MaxRetries { get; set; } = 3; public int DelayMilliseconds { get; set; } = 1000; }