9 lines
258 B
C#
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);
|
|
}
|