初始化

This commit is contained in:
2025-11-26 11:32:30 +08:00
commit 2163829349
1853 changed files with 1896668 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
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; }
}
}