8 lines
223 B
C#
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;
|
|
} |