12 lines
268 B
C#
12 lines
268 B
C#
namespace Leanetec.EConnect.Client;
|
|
|
|
public class ClientOptions
|
|
{
|
|
public string? BaseAddress { get; set; }
|
|
|
|
public string? ApiKey { get; set; }
|
|
|
|
public TimeSpan? Timeout { get; set; }
|
|
|
|
public Dictionary<string, string?>? QueryStrings { get; set; }
|
|
} |