Add project files.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
namespace TheXamlGuy.Framework.Core
|
||||
{
|
||||
public interface IMediatorHandler<TRequest>
|
||||
{
|
||||
void Handle(TRequest request);
|
||||
}
|
||||
|
||||
public interface IMediatorHandler<TResponse, TRequest>
|
||||
{
|
||||
TResponse Handle(TRequest request);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user