Files
Web_CRICS_Server_VS2010_Prod/Domain/IoTTCLEntity.cs

30 lines
714 B
C#
Raw Normal View History

2025-12-11 09:17:16 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Domain.IoTTCLEntity
{
public class TCLRequest
{
public string code { get; set; }
public string msg { get; set; }
public List<TCLData> data { get; set; }
public TCLInfo info { get; set; }
}
public class TCLData
{
public string deviceID { get; set; }
public string deviceType { get; set; }
public string deviceName { get; set; }
public string value { get; set; }
}
public class TCLInfo
{
public string hotel { get; set; }
public string room { get; set; }
public string mac { get; set; }
}
}