18 lines
438 B
C#
18 lines
438 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Mqtt.Models
|
|||
|
{
|
|||
|
public class device_list
|
|||
|
{
|
|||
|
public string topic { get; set; }
|
|||
|
public string tagIot { get; set; }
|
|||
|
public int main_id { get; set; }
|
|||
|
public List<device_list_point> deviceListPoints { get; set; }
|
|||
|
}
|
|||
|
|
|||
|
public class device_list_point
|
|||
|
{
|
|||
|
public string pointOrg { get; set; }
|
|||
|
public string PointSys { get; set; }
|
|||
|
}
|
|||
|
}
|