Files

11 lines
277 B
C#

using DbusSmsForward.SMSModel;
namespace DbusSmsForward.Notifications;
public interface INotificationSender
{
string Name { get; }
bool IsEnabled { get; }
Task SendAsync(SmsContentModel sms, string body, string deviceName, CancellationToken cancellationToken);
}