Newer
Older
SensorHub / SensorHub.CorrRate / CorrRateDatasJson.cs
root on 17 Sep 2021 477 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 CorrRateDatasJson : DatasJson
    {
        public float accCorrLen { get; set; }   //累积腐蚀量

        public CorrRateDatasJson(string uptime, float accCorrLen)
        {
            this.uptime = uptime;
            this.accCorrLen = accCorrLen;
        }
    }
}