17 lines
404 B
C#
Raw Normal View History

2025-06-17 15:47:50 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YD_AllHeartRates.Commons.Dto.Mqtt
{
public class MqttMessage
{
public int Id { get; set; }
public string Topic { get; set; } = default!;
public string Payload { get; set; } = default!;
public DateTime ReceivedAt { get; set; }
}
}