Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created May 10, 2022 02:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdelrosario/ea382164e33b2d95f80df5d6930cebff to your computer and use it in GitHub Desktop.
Save rdelrosario/ea382164e33b2d95f80df5d6930cebff to your computer and use it in GitHub Desktop.
public interface IStartupTask
{
Task<bool> CanRunAsync();
Task<IStartupTaskParameters> RunAsync(IStartupTaskParameters parameters);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment