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