This commit is contained in:
TheXamlGuy
2024-04-26 22:27:31 +01:00
parent d799eab511
commit 9f90ef693d
39 changed files with 236 additions and 211 deletions
+2 -4
View File
@@ -1,10 +1,8 @@
namespace Toolkit.Foundation;
public interface INotificationHandler<in TNotification> :
public interface INotificationHandler<in TMessage> :
IHandler
where TNotification :
INotification
{
Task Handle(TNotification args,
Task Handle(TMessage args,
CancellationToken cancellationToken = default);
}