Files
2026-01-05 00:37:54 +03:00

8 lines
223 B
C#

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;
}