Skip to content

Instantly share code, notes, and snippets.

@configureappio
Created April 2, 2018 16:13
Show Gist options
  • Save configureappio/cfb6c311bfe333ce8d47c757f23928aa to your computer and use it in GitHub Desktop.
Save configureappio/cfb6c311bfe333ce8d47c757f23928aa to your computer and use it in GitHub Desktop.
Example of class to read secrets dictionary
public class MyAppSettings : IAppSettingsStructure
{
public string ApplicationName { get; set; }
public Dictionary<string, string> Secrets { get; set; } = new Dictionary<string, string>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment