Skip to content

Instantly share code, notes, and snippets.

@gshackles
Created November 5, 2012 04:51
Show Gist options
  • Save gshackles/4015400 to your computer and use it in GitHub Desktop.
Save gshackles/4015400 to your computer and use it in GitHub Desktop.
public class SubNavigationResultMessage<TResult> : TinyMessageBase
{
public TResult Result { get; private set; }
public string MessageId { get; set; }
public SubNavigationResultMessage(object sender, string messageId, TResult result)
: base(sender)
{
Result = result;
MessageId = messageId;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment