16 lines
344 B
C#
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;
|
|
}
|
|
}
|