Created
July 31, 2024 10:04
-
-
Save FacileTechnolab/647248d4a08f83863ee58f0ae05e2842 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
namespace BlazorAppPart4 | |
{ | |
public class AppConfig | |
{ | |
public AppConfig() { | |
Database = new DbConfig(); | |
} | |
public DbConfig Database { get; set; } | |
} | |
public class DbConfig | |
{ | |
public string? ConnectionString { get; set; } | |
public string? DatabaseName { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment