Files
mapo-mono/MP.MONO.Core/CONF/EndpointData.cs
T
2022-06-13 19:16:48 +02:00

16 lines
344 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MP.MONO.Core.CONF
{
public class EndpointData
{
public string IpAddress { get; set; } = "";
public int Port { get; set; } = 0;
public int PingMsTimeout { get; set; } = 1000;
}
}