Files
Cleanuparr/code/backend/Cleanuparr.Infrastructure/Features/Notifications/INotificationProviderFactory.cs
T

9 lines
249 B
C#

using Cleanuparr.Infrastructure.Features.Notifications.Models;
namespace Cleanuparr.Infrastructure.Features.Notifications;
public interface INotificationProviderFactory
{
INotificationProvider CreateProvider(NotificationProviderDto config);
}