13 lines
291 B
C#
13 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();
|
|||
|
|
}
|
|||
|
|
}
|