feat(IHttpClientOptions): Abfrage-Parameter und Header hinzugefügt.
- Geordnete DI-Erweiterungen.
This commit is contained in:
@@ -2,8 +2,12 @@
|
||||
{
|
||||
public interface IHttpClientOptions
|
||||
{
|
||||
public string Uri { get; set; }
|
||||
string Uri { get; init; }
|
||||
|
||||
public string Path { get; set; }
|
||||
string? Path { get; init; }
|
||||
|
||||
IEnumerable<KeyValuePair<string, object>>? Headers { get; init; }
|
||||
|
||||
IEnumerable<KeyValuePair<string, object?>>? QueryParams { get; init; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user