Files

21 lines
593 B
C#
Raw Permalink Normal View History

2025-11-26 11:32:30 +08:00
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; }
}
}