13 lines
360 B
C#
13 lines
360 B
C#
using Pcm.Db.Ioc;
|
|
|
|
namespace Drab.Core.Configuration;
|
|
|
|
public class PcmDbConfiguration : IDbConfiguration
|
|
{
|
|
public const string SectionName = "PcmDbSettings";
|
|
public string Host { get; set; }
|
|
public string Port { get; set; }
|
|
public string User { get; set; }
|
|
public string Password { get; set; }
|
|
public string Database { get; set; }
|
|
} |