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

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