10 lines
244 B
C#
10 lines
244 B
C#
namespace Toolkit.Foundation;
|
|
|
|
public interface INotificationHandler<in TNotification> :
|
|
IHandler
|
|
where TNotification :
|
|
INotification
|
|
{
|
|
Task Handle(TNotification args,
|
|
CancellationToken cancellationToken = default);
|
|
} |