Skip to content
Snippets Groups Projects
Commit 917e9324 authored by Frederik Carlier's avatar Frederik Carlier
Browse files

Add a constructor which allows you to set the Result of a CommandResponse object

parent 57890a7e
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,15 @@
public class CommandResponse<T> : CommandResponse
{
public CommandResponse()
{
}
public CommandResponse(T result)
{
this.Result = result;
}
public T Result
{
get;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment