Newer
Older
SensorHub / SensorHub.Lamphouse / LamphouseEventJson.cs
root on 17 Sep 2021 528 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.Lamphouse
{
    public class LamphouseEventJson : EventJson
    {
        public List<DatasJson> datas { get; set; }   //数据数组

        public LamphouseEventJson(string bType, List<String> eventType, List<DatasJson> datas, string logTime)
            : base(bType, eventType, logTime)
        {
            this.datas = datas;
        }
    }
}