sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Domain/NotificationProviders/MailNotification.cs

14 lines
295 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using System.Threading.Tasks;
namespace Sozsoft.Notifications.Domain.NotificationProviders;
public class MailNotification : INotification
{
public Task Send(string[] NotificationType, string NotificationMessage)
{
throw new NotImplementedException();
}
}