13 lines
471 B
C#
13 lines
471 B
C#
using System.Net;
|
|
|
|
namespace InnovEnergy.App.Collector;
|
|
|
|
public static class Settings
|
|
{
|
|
public const String ProtocolV3 = "48TL200V3";
|
|
public const String ProtocolV4 = "48TL200V4";
|
|
|
|
public static readonly IPEndPoint IncomingEndPoint = IPEndPoint.Parse("10.2.0.1:8134");
|
|
public static readonly IPEndPoint DbEndPoint = IPEndPoint.Parse("127.0.0.1:8089");
|
|
public static readonly IPEndPoint LoggingEndPoint = IPEndPoint.Parse("127.0.0.1:6030");
|
|
} |