using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Rfid.Entity
{
///
/// 心跳设置包
///
public class BFHSendEntity
{
///
/// 返回模式(00严格按时间 01空闲返回)
///
public byte Mode { get; set; }
///
/// 返回时间(单位秒)
///
public byte Time { get; set; }
///
/// 保留(一直等于01就行)
///
public byte Rev { get; set; }
}
}