9 lines
182 B
C#
9 lines
182 B
C#
|
namespace app.Configuration
|
|||
|
{
|
|||
|
public class DatabaseSettings
|
|||
|
{
|
|||
|
public string ConnectionString { get; set; }
|
|||
|
public string Credentials { get; set; }
|
|||
|
}
|
|||
|
}
|