Rework notifications system (#284)

This commit is contained in:
Flaminel authored and GitHub committed 2025-09-02 23:18:22 +03:00
1 parent 7201520411
commit f93494adb2
73 files changed
+5089 -1254

No files matched your search

@@ -0,0 +1,8 @@
using Cleanuparr.Infrastructure.Features.Notifications.Models;
namespace Cleanuparr.Infrastructure.Features.Notifications;
public interface INotificationProviderFactory
{
INotificationProvider CreateProvider(NotificationProviderDto config);
}