testing db update
This commit is contained in:
23
test/Settings/DbConnectionSettings.cs
Normal file
23
test/Settings/DbConnectionSettings.cs
Normal file
@ -0,0 +1,23 @@
|
||||
namespace test.Settings
|
||||
{
|
||||
public abstract class DbConnectionSettings
|
||||
{
|
||||
public string Database { get; set; }
|
||||
public string Server { get; set; }
|
||||
public int Port { get; set; }
|
||||
public string Username { get; set; }
|
||||
|
||||
public string ConnectionString => $"Database={Database};Server={Server};Port={Port};Username={Username};Password={Password};";
|
||||
|
||||
public string Password { get; set; }
|
||||
}
|
||||
|
||||
public class DevConnectionSettings : DbConnectionSettings
|
||||
{
|
||||
|
||||
}
|
||||
public class TestConnectionSettings : DbConnectionSettings
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user