sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Domain.Shared/NotificationProviders/INotification.cs

11 lines
262 B
C#
Raw Permalink Normal View History

2026-02-24 20:44:16 +00:00
using System.Threading.Tasks;
using Volo.Abp.DependencyInjection;
namespace Sozsoft.Notifications.Domain.NotificationProviders;
public interface INotification : ITransientDependency
{
Task Send(string[] NotificationType, string NotificationMessage);
}