21 lines
593 B
C#
21 lines
593 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Drawing.Design;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
|
|||
|
|
namespace MQTTServerSideAPI.Models
|
|||
|
|
{
|
|||
|
|
public class MqttTopicMessage
|
|||
|
|
{
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public string productid { get; set; }
|
|||
|
|
public string devicename { get; set; }
|
|||
|
|
public string topic { get; set; }
|
|||
|
|
public string payload { get; set; }
|
|||
|
|
public long seq { get; set; }
|
|||
|
|
public long timestamp { get; set; }
|
|||
|
|
public long timemills { get; set; }
|
|||
|
|
public DateTime timeappreceive { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|