mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-31 18:08:44 -05:00
9 lines
249 B
C#
9 lines
249 B
C#
using Cleanuparr.Infrastructure.Features.Notifications.Models;
|
|
|
|
namespace Cleanuparr.Infrastructure.Features.Notifications;
|
|
|
|
public interface INotificationProviderFactory
|
|
{
|
|
INotificationProvider CreateProvider(NotificationProviderDto config);
|
|
}
|