chore: Upgrade von Core.Abstractions 2.2.1 und Core.Client auf 2.0.2

This commit is contained in:
Developer 02
2024-11-25 14:40:52 +01:00
parent da06daf776
commit f2ee509727
7 changed files with 11 additions and 11 deletions

View File

@@ -11,11 +11,11 @@ namespace EnvelopeGenerator.Application.Configurations.GtxMessaging
public string? Path { get; init; }
public IEnumerable<KeyValuePair<string, object>>? Headers { get; init; }
public Dictionary<string, object>? Headers { get; init; }
public IEnumerable<KeyValuePair<string, object?>>? QueryParams { get; init; }
public Dictionary<string, object?>? QueryParams { get; init; }
public string RecipientQueryParamName { get; init; } = "from";
public string RecipientQueryParamName { get; init; } = "to";
public string MessageQueryParamName { get; init; } = "text";
}