using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IOT.Show.Model
{
public class T_Led_Data
{
///
/// 测控点名称
///
public string monitorName { get; set; }
///
/// 显示标题
///
public string title { get; set; }
///
/// Ip地址
///
public string ip { get; set; }
///
/// 温度
///
public string tempreture { get; set; }
///
/// 湿度
///
public string humidity { get; set; }
///
/// 照度
///
public string illuminance { get; set; }
///
/// 采集时间
///
public string collectTime { get; set; }
}
}