Skip to content

Instantly share code, notes, and snippets.

@dimitris-papadimitriou-chr
Last active August 27, 2022 17:19
Show Gist options
  • Save dimitris-papadimitriou-chr/9ce5dfe111e4243993b418051d838006 to your computer and use it in GitHub Desktop.
Save dimitris-papadimitriou-chr/9ce5dfe111e4243993b418051d838006 to your computer and use it in GitHub Desktop.
public interface IOperation<T, R>
{
Task<R> OperationAsync(T t);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment