using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
namespace RCUHost.Protocols
{
public class CommandData
{
public IPEndPoint RemoteEndPoint { get; set; }
///
/// 帧序号
///
public ushort FrameNo { get; set; }
///
/// 命令数据
///
public byte[] Data { get; set; }
///
/// 生存时间
///
public int TTL { get; set; }
///
/// 重发次数
///
public int ResendTime { get; set; }
}
}