using SensorHub.Servers.JsonFormat; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SensorHub.CorrRate { public class CorrRateConfigItemsJson { public string acqStart { get; set; } public short interval { get; set; } public short times { get; set; } public short repeat { get; set; } public string ip { get; set; } public int port { get; set; } } }