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