15 lines
375 B
C#
15 lines
375 B
C#
using EnvelopeGenerator.Application.Configurations;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace EnvelopeGenerator.Application.Services
|
|
{
|
|
public class GTXMessagingService
|
|
{
|
|
private readonly string _authKey;
|
|
|
|
public GTXMessagingService(IOptions<GTXMessagingConfig> options)
|
|
{
|
|
_authKey = options.Value.AuthKey;
|
|
}
|
|
}
|
|
} |