Created
March 25, 2022 12:33
-
-
Save rdelrosario/068f48f4dc4513f8efcda48e17115532 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 class SimulateDownloadDataStartupTask : IStartupTask | |
{ | |
public Task<bool> CanRunAsync() => Task.FromResult(true); | |
public Task RunAsync() => Task.Delay(5000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment