mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-30 00:21:33 -05:00
14 lines
338 B
C#
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);
|
|
}
|