Introduce Ip4Address class, standard IpAddress class is unwieldy...

This commit is contained in:
ig 2023-07-03 15:59:55 +02:00
parent d7cb9401da
commit cc8621d632
2 changed files with 7 additions and 10 deletions

View File

@ -1,10 +0,0 @@
namespace InnovEnergy.App.SaliMax;
public enum BusPort
{
None,
Ac,
Dc,
Dc48,
Infer,
}

View File

@ -0,0 +1,7 @@
namespace InnovEnergy.Lib.Utils.Net;
public class Ip4Address
{
public required String Address { get; init; }
public required UInt16 Port { get; init; }
}