refactor(IHttpClientOptions): removed

This commit is contained in:
Developer 02
2024-11-25 10:42:22 +01:00
parent c65eefb954
commit 3b8b315fea
5 changed files with 8 additions and 23 deletions

View File

@@ -1,13 +0,0 @@
namespace DigitalData.Core.Abstractions.Client
{
public interface IHttpClientOptions
{
string Uri { get; init; }
string? Path { get; init; }
IEnumerable<KeyValuePair<string, object>>? Headers { get; init; }
IEnumerable<KeyValuePair<string, object?>>? QueryParams { get; init; }
}
}