2025-05-06 06:45:49 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Volo.Abp.DependencyInjection;
|
|
|
|
|
|
|
2025-11-11 19:49:52 +00:00
|
|
|
|
namespace Erp.Notifications.Domain.NotificationProviders;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public interface INotification : ITransientDependency
|
|
|
|
|
|
{
|
|
|
|
|
|
Task Send(string[] NotificationType, string NotificationMessage);
|
|
|
|
|
|
}
|
2025-11-11 19:49:52 +00:00
|
|
|
|
|