using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Rfid.Entity
{
///
/// 发送数据基础类
///
public class BaseSendDataEntity
{
///
/// 指令编号
///
public byte Code { get; set; }
///
/// 数据
///
public byte[] Data { get; set; }
}
}