mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 11:56:29 +00:00
9 lines
197 B
C#
9 lines
197 B
C#
namespace Azaion.CommonSecurity.DTO;
|
|
|
|
public class ApiConfig
|
|
{
|
|
public string Url { get; set; } = null!;
|
|
public int RetryCount {get;set;}
|
|
public double TimeoutSeconds { get; set; }
|
|
}
|