You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
788 B
C#
37 lines
788 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IOT.Show.Model
|
|
{
|
|
public class T_Led_Info
|
|
{
|
|
/// <summary>
|
|
/// 标题
|
|
/// </summary>
|
|
public string title { get; set; }
|
|
|
|
/// <summary>
|
|
/// 集中器编号
|
|
/// </summary>
|
|
public string collectDeviceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// ip地址
|
|
/// </summary>
|
|
public string ip { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字体
|
|
/// </summary>
|
|
public string font { get; set; }
|
|
|
|
/// <summary>
|
|
/// 集中器标识
|
|
/// </summary>
|
|
public int collectFlag { get; set; }
|
|
}
|
|
}
|