Newer
Older
SensorHub / SensorHub.Liquid / LiquidDatasJson.cs
root on 17 Sep 2021 445 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.Liquid
{
    public class LiquidDatasJson : DatasJson
    {
        public float level { get; set; }   //液位值

        public LiquidDatasJson(string uptime, float level)
        {
            this.uptime = uptime;
            this.level = level;
        }
    }
}