// PostgreSqlConnectionOptions.cs
public class PostgreSqlConnectionOptions
{
public required string Host { get; set; } = "localhost";
public required string Database { get; set; } = "myDb";
public required string Username { get; set; } = "username";
public required string Password { get; set; } = "password";
public required int Port { get; set; } = 5432;
}
// PostgreSqlConnectionOptions.cs
public class PostgreSqlConnectionOptions
{
public required string Host { get; set; } = "localhost";
public required string Database { get; set; } = "myDb";
public required string Username { get; set; } = "username";
public required string Password { get; set; } = "password";
public required int Port { get; set; } = 5432;
}