11 lines
262 B
C#
11 lines
262 B
C#
|
|
using System.Threading.Tasks;
|
|||
|
|
using Volo.Abp.DependencyInjection;
|
|||
|
|
|
|||
|
|
namespace Sozsoft.Notifications.Domain.NotificationProviders;
|
|||
|
|
|
|||
|
|
public interface INotification : ITransientDependency
|
|||
|
|
{
|
|||
|
|
Task Send(string[] NotificationType, string NotificationMessage);
|
|||
|
|
}
|
|||
|
|
|