refactor(ClientOptions): move to inf layer

This commit is contained in:
2025-08-15 10:39:25 +02:00
parent c21e4a93ef
commit 3af571ea37
5 changed files with 17 additions and 53 deletions

View File

@@ -0,0 +1,12 @@
namespace Leanetec.EConnect.Infrastructure;
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; }
}