Skip to content

Instantly share code, notes, and snippets.

@aranm
Last active August 6, 2019 06:20
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 aranm/7e4dcca93093154098f474f72a7ce7c3 to your computer and use it in GitHub Desktop.
Save aranm/7e4dcca93093154098f474f72a7ce7c3 to your computer and use it in GitHub Desktop.
Application Settings and Connection Strings POCO
public class ApplicationSettings
{
public string AzureWebJobsStorage { get; set; }
public string SuperApiKey { get; set; }
}
public class ConnectionStrings
{
public string SqlConnectionString { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment