Добавьте файлы проекта.
This commit is contained in:
8
SQLVision.Services/Configuration/RetryOptions.cs
Normal file
8
SQLVision.Services/Configuration/RetryOptions.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user