export interface DbConnectionConfig
{
    host: string;
    port: string;
    database: string;
    username: string;
    password: string;
}