DatabaseCredentialsImpl
data class DatabaseCredentialsImpl(val host: String, val port: String, val dbName: String, val username: String, val password: String) : DatabaseCredentials
Data class to represent database credentials.
Parameters
host
the database host
port
the database port
dbName
the database name
username
the database username
password
the database password