This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Rfid.Entity
{
/// <summary>
/// 心跳设置包
/// </summary>
public class BFHSendEntity
/// 返回模式(00严格按时间 01空闲返回)
public byte Mode { get; set; }
/// 返回时间(单位秒)
public byte Time { get; set; }
/// 保留(一直等于01就行)
public byte Rev { get; set; }
}