Skip to content

Instantly share code, notes, and snippets.

@FacileTechnolab
Created July 31, 2024 10:04
Show Gist options
  • Save FacileTechnolab/647248d4a08f83863ee58f0ae05e2842 to your computer and use it in GitHub Desktop.
Save FacileTechnolab/647248d4a08f83863ee58f0ae05e2842 to your computer and use it in GitHub Desktop.
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