added ServerConfigurationMapping
split up Abstractions so we have one type per file.
This commit is contained in:
parent
b7631ecdd0
commit
a5cb6ef7d4
13 changed files with 431 additions and 76 deletions
9
pgLabII.PgUtils/ConnectionStrings/HostEndpoint.cs
Normal file
9
pgLabII.PgUtils/ConnectionStrings/HostEndpoint.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
using System.Collections.Generic;
|
||||
|
||||
namespace pgLabII.PgUtils.ConnectionStrings;
|
||||
|
||||
public sealed class HostEndpoint
|
||||
{
|
||||
public string Host { get; init; } = string.Empty;
|
||||
public ushort? Port { get; init; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue