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; } }