pgLabII/pgLabII.PgUtils/ConnectionStrings/HostEndpoint.cs
eelke a5cb6ef7d4 added ServerConfigurationMapping
split up Abstractions so we have one type per file.
2025-08-31 06:49:37 +02:00

9 lines
214 B
C#

using System.Collections.Generic;
namespace pgLabII.PgUtils.ConnectionStrings;
public sealed class HostEndpoint
{
public string Host { get; init; } = string.Empty;
public ushort? Port { get; init; }
}