using EnvelopeGenerator.Application.DTOs.Messaging; namespace EnvelopeGenerator.Application.Contracts { public interface IMessagingService { string ServiceProvider { get; } Task SendSmsAsync(string recipient, string message); Task SendSmsCodeAsync(string recipient, string envelopeReceiverId); } }