32 lines
859 B
C#
32 lines
859 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MQTT_WinformV1.Model
|
|
{
|
|
public class MqttDataModel
|
|
{
|
|
/// <summary>
|
|
/// 时间戳(毫秒级)
|
|
/// </summary>
|
|
public long time { get; set; }
|
|
public MqttParamsModel @params { get; set; }
|
|
}
|
|
|
|
public class MqttParamsModel
|
|
{
|
|
public string Value01 { get; set; }
|
|
public string Value02 { get; set; }
|
|
public string Value03 { get; set; }
|
|
public string Value04 { get; set; }
|
|
public string Value05 { get; set; }
|
|
public string Value06 { get; set; }
|
|
public string Value07 { get; set; }
|
|
public string Value08 { get; set; }
|
|
public string Value09 { get; set; }
|
|
public string Value10 { get; set; }
|
|
}
|
|
}
|