Updated namespaces to align with the new DigitalData.Core structure, replacing `DigitalData.Core.Abstractions` with `DigitalData.Core.Application.Interfaces` and `DigitalData.Core.Client.Interface`. Removed the `IUnique<int>` interface from several DTOs, simplifying their design and altering the handling of entity identification. Updated project files to reflect new dependency versions for improved compatibility and features. Cleaned up using directives to remove obsolete references, enhancing code maintainability.
20 lines
595 B
C#
20 lines
595 B
C#
using DigitalData.Core.Client.Interface;
|
|
namespace EnvelopeGenerator.Application.Configurations;
|
|
|
|
/// <summary>
|
|
/// https://www.gtx-messaging.com/en/api-docs/sms-rest-api/
|
|
/// </summary>
|
|
public class GtxMessagingParams : IHttpClientOptions
|
|
{
|
|
public required string Uri { get; init; }
|
|
|
|
public string? Path { get; init; }
|
|
|
|
public Dictionary<string, object>? Headers { get; init; }
|
|
|
|
public Dictionary<string, object?>? QueryParams { get; init; }
|
|
|
|
public string RecipientQueryParamName { get; init; } = "to";
|
|
|
|
public string MessageQueryParamName { get; init; } = "text";
|
|
} |