Newer
Older
SensorHub / SensorHub.CorrRate / CorrRateConfigItemsJson.cs
root on 17 Sep 2021 493 bytes first commit
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; }

    }
}