Introduce Ip4Address class, standard IpAddress class is unwieldy...
This commit is contained in:
parent
d7cb9401da
commit
cc8621d632
|
@ -1,10 +0,0 @@
|
||||||
namespace InnovEnergy.App.SaliMax;
|
|
||||||
|
|
||||||
public enum BusPort
|
|
||||||
{
|
|
||||||
None,
|
|
||||||
Ac,
|
|
||||||
Dc,
|
|
||||||
Dc48,
|
|
||||||
Infer,
|
|
||||||
}
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
namespace InnovEnergy.Lib.Utils.Net;
|
||||||
|
|
||||||
|
public class Ip4Address
|
||||||
|
{
|
||||||
|
public required String Address { get; init; }
|
||||||
|
public required UInt16 Port { get; init; }
|
||||||
|
}
|
Loading…
Reference in New Issue