Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created June 10, 2016 01:26
Embed
What would you like to do?
public class MyCommand : IRequest
{
}
public class MyHandler : IRequestHandler<MyCommand, Unit>
{
public Unit Handle(MyCommand message)
{
throw new NotImplementedException();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment