erp-platform/api/modules/Kurs.Notifications/Kurs.Notifications.Domain.Shared/NotificationProviders/INotification.cs
Sedat ÖZTÜRK e1a9562b22 init project
2025-05-06 09:45:49 +03:00

9 lines
258 B
C#

using System.Threading.Tasks;
using Volo.Abp.DependencyInjection;
namespace Kurs.Notifications.Domain.NotificationProviders;
public interface INotification : ITransientDependency
{
Task Send(string[] NotificationType, string NotificationMessage);
}