2025-05-06 06:45:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Notifications.Domain.NotificationProviders;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public class MailNotification : INotification
|
|
|
|
|
|
{
|
|
|
|
|
|
public Task Send(string[] NotificationType, string NotificationMessage)
|
|
|
|
|
|
{
|
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|