7 lines
227 B
C#
7 lines
227 B
C#
namespace Toolkit.Framework.Foundation;
|
|
|
|
public interface INotificationHandler<in TNotification> where TNotification : INotification
|
|
{
|
|
ValueTask Handle(TNotification notification, CancellationToken cancellationToken);
|
|
}
|