Skip to content

Instantly share code, notes, and snippets.

@jonfuller
Created June 23, 2010 17:56
Show Gist options
  • Save jonfuller/450285 to your computer and use it in GitHub Desktop.
Save jonfuller/450285 to your computer and use it in GitHub Desktop.
public class SyncData<TResult>
{
public TResult Result { get; set; }
public SyncData(TResult result)
{
Result = result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment