Newer
Older
SensorHub / SensorHub.WasteGas / WasteGasConfigItemsJson.cs
root on 17 Sep 2021 397 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.WasteGas
{
    public class WasteGasConfigItemsJson
    {
        public int interval { get; set; }//时间间隔,单位秒

        public string ip { get; set; }
        public int port { get; set; }
        
    }
}