Files
Cleanuparr/code/backend/Cleanuparr.Infrastructure/Features/Notifications/INotificationProvider.cs
2025-09-02 23:18:22 +03:00

14 lines
338 B
C#

using Cleanuparr.Domain.Enums;
using Cleanuparr.Infrastructure.Features.Notifications.Models;
namespace Cleanuparr.Infrastructure.Features.Notifications;
public interface INotificationProvider
{
string Name { get; }
NotificationProviderType Type { get; }
Task SendNotificationAsync(NotificationContext context);
}