Last active
August 6, 2019 06:20
-
-
Save aranm/7e4dcca93093154098f474f72a7ce7c3 to your computer and use it in GitHub Desktop.
Application Settings and Connection Strings POCO
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 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