Files
annotations/Azaion.Common/DTO/Config/ApiConfig.cs
T

9 lines
196 B
C#

namespace Azaion.Common.DTO.Config;
public class ApiConfig
{
public string Url { get; set; } = null!;
public int RetryCount {get;set;}
public double TimeoutSeconds { get; set; }
}