erp-platform/api/modules/Erp.Notifications/Erp.Notifications.Domain.Shared/NotificationProviders/INotification.cs
2025-11-11 22:49:52 +03:00

10 lines
258 B
C#

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