10 lines
214 B
C#
10 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; }
|
|||
|
|
}
|