Created
May 10, 2022 02:09
-
-
Save rdelrosario/0b749c0a69cb4c3edf7e7abe88822e2a to your computer and use it in GitHub Desktop.
This file contains 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 interface IStartupTaskParameters : IDictionary<string, object>{} | |
public class StartupTaskParameters : Dictionary<string, object>, IStartupTaskParameters | |
{ | |
public static IStartupTaskParameters None => _none ??= new StartupTaskParameters(); | |
private static IStartupTaskParameters _none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment