refactor(MessagingService): umbenannt in SmsSender

This commit is contained in:
Developer 02
2025-01-31 10:37:59 +01:00
parent e54d9d2da8
commit 22347a0202
6 changed files with 14 additions and 12 deletions

View File

@@ -0,0 +1,11 @@
using EnvelopeGenerator.Application.DTOs.Messaging;
namespace EnvelopeGenerator.Application.Contracts;
//TODO: move to DigitalData.Core
public interface ISmsSender
{
string ServiceProvider { get; }
Task<SmsResponse> SendSmsAsync(string recipient, string message);
}