namespace LaaProductionWeb.API.Models
{
///
/// C# class representation of the appsettings.json file.
///
public class ApplicationSettings
{
///
/// Default defined ConnectionStrings section for the appsettings.json
///
public ConnectionStrings ConnectionStrings { get; set; }
}
///
/// Default defined ConnectionStrings section for the appsettings.json
///
public class ConnectionStrings
{
public string DefaultConnection { get; set; }
}
}