web-app-template/backend/app/app.Configuration/DatabaseSettings.cs

9 lines
182 B
C#
Raw Normal View History

2022-02-20 13:43:25 +01:00
namespace app.Configuration
{
public class DatabaseSettings
{
public string ConnectionString { get; set; }
public string Credentials { get; set; }
}
}