ibms-MCUT/Mqtt/Models/Device.cs
2025-01-24 12:05:03 +08:00

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; }
}
}