43ba19468f
- ok connessione/disconnessione da ctrl-c - mostra eventi (tutti) - levare NLog?!?
18 lines
454 B
C#
18 lines
454 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 ConfFile { get; set; } = "Demo.json";
|
|
public string IpAddress { get; set; } = "";
|
|
public string FullUrl { get; set; } = "";
|
|
public int Port { get; set; } = 0;
|
|
public int PingMsTimeout { get; set; } = 1000;
|
|
}
|
|
}
|