namespace LibraryManagementSystem.Console.Database;
///
/// Хранит настройки подключения к PostgreSQL.
///
public static class DbConfig
{
///
/// Строка подключения к PostgreSQL.
///
public const string CONNECTION_STRING =
"Host=localhost;Port=5435;Database=library_db;Username=postgres;Password=postgres";
}