8 lines
176 B
C#
8 lines
176 B
C#
namespace Streetwriters.Data.Interfaces
|
|
{
|
|
public interface IDbSettings
|
|
{
|
|
string DatabaseName { get; set; }
|
|
string ConnectionString { get; set; }
|
|
}
|
|
} |