7 lines
179 B
C#
7 lines
179 B
C#
namespace pgLabII.PgUtils.ConnectionStrings;
|
|
|
|
public sealed class HostEndpoint
|
|
{
|
|
public string Host { get; init; } = string.Empty;
|
|
public ushort? Port { get; init; }
|
|
}
|