sozsoft-platform/api/modules/Sozsoft.Notifications/Sozsoft.Notifications.Domain.Shared/NotificationProviders/INotification.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

10 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);
}