mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-13 13:58:20 -04:00
11 lines
264 B
C#
11 lines
264 B
C#
namespace Cleanuparr.Infrastructure.Http.DynamicHttpClientSystem;
|
|
|
|
/// <summary>
|
|
/// Retry configuration for HTTP clients
|
|
/// </summary>
|
|
public class RetryConfig
|
|
{
|
|
public int MaxRetries { get; set; }
|
|
public bool ExcludeUnauthorized { get; set; } = true;
|
|
}
|