30 lines
714 B
C#
30 lines
714 B
C#
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; }
|
|
}
|
|
}
|
|
|