20 lines
550 B
C#
20 lines
550 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YD_AllHeartRates.Commons.Dto.Mqtt
|
|
{
|
|
public class BlePayload
|
|
{
|
|
public DateTime Timestamp { get; set; }
|
|
public string Type { get; set; } = default!;
|
|
public string Mac { get; set; } = default!;
|
|
public int BleNo { get; set; }
|
|
public string BleName { get; set; } = default!;
|
|
public int Rssi { get; set; }
|
|
public string RawData { get; set; } = default!;
|
|
}
|
|
}
|