初始化CRICS
This commit is contained in:
29
Domain/IoTTCLEntity.cs
Normal file
29
Domain/IoTTCLEntity.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user