10 lines
196 B
C#
10 lines
196 B
C#
namespace Pcm.Db.Ioc;
|
|
|
|
public interface IDbConfiguration
|
|
{
|
|
string Host { get; }
|
|
string Port { get; }
|
|
string User { get; }
|
|
string Password { get; }
|
|
string Database { get; }
|
|
} |