mirror of
https://github.com/azaion/annotations.git
synced 2026-04-23 08:16:29 +00:00
13 lines
280 B
C#
13 lines
280 B
C#
namespace Azaion.Suite.Services.DTO;
|
|
|
|
public class ApiConfig
|
|
{
|
|
public string Url { get; set; } = null!;
|
|
public int RetryCount {get;set;}
|
|
public double TimeoutSeconds { get; set; }
|
|
}
|
|
|
|
public class LocalFilesConfig
|
|
{
|
|
public string DllPath { get; set; } = null!;
|
|
} |