using EnvelopeGenerator.Application.Configurations.GtxMessaging; using Microsoft.Extensions.Options; namespace EnvelopeGenerator.Application.Services { public class GtxMessagingService { private readonly SmsParams _smsParams; public GtxMessagingService(IOptions smsParamsOptions) { _smsParams = smsParamsOptions.Value; } } }