13 lines
294 B
C#
13 lines
294 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sozsoft.Notifications.Domain.NotificationProviders;
|
|
|
|
public class SmsNotification : INotification
|
|
{
|
|
public Task Send(string[] NotificationType, string NotificationMessage)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
|