using EnvelopeGenerator.Application.Common.Dto.Messaging; namespace EnvelopeGenerator.Application.Common.Interfaces.Services; //TODO: move to DigitalData.Core /// /// /// public interface ISmsSender { /// /// /// string ServiceProvider { get; } /// /// /// /// /// /// Task SendSmsAsync(string recipient, string message); }