Files
Web_CRICS_Server_VS2010_Prod/RCUHost/Protocols/CommandData.cs
2025-12-11 09:17:16 +08:00

34 lines
683 B
C#

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; }
/// <summary>
/// 帧序号
/// </summary>
public ushort FrameNo { get; set; }
/// <summary>
/// 命令数据
/// </summary>
public byte[] Data { get; set; }
/// <summary>
/// 生存时间
/// </summary>
public int TTL { get; set; }
/// <summary>
/// 重发次数
/// </summary>
public int ResendTime { get; set; }
}
}