22 lines
596 B
C#
22 lines
596 B
C#
namespace LaaProductionWeb.API.Models
|
|
{
|
|
/// <summary>
|
|
/// C# class representation of the appsettings.json file.
|
|
/// </summary>
|
|
public class ApplicationSettings
|
|
{
|
|
/// <summary>
|
|
/// Default defined ConnectionStrings section for the appsettings.json
|
|
/// </summary>
|
|
public ConnectionStrings ConnectionStrings { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Default defined ConnectionStrings section for the appsettings.json
|
|
/// </summary>
|
|
public class ConnectionStrings
|
|
{
|
|
public string DefaultConnection { get; set; }
|
|
}
|
|
}
|