Created
May 26, 2016 19:51
-
-
Save mantzas/207e749ff02c408e95a2eb6624a84485 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public bool Run() | |
{ | |
return true; | |
} | |
public Task<bool> RunAsync() | |
{ | |
return Task.FromResult(true); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment