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(); } }