初始化CRICS

This commit is contained in:
2025-12-11 09:17:16 +08:00
commit 83247ec0a2
2735 changed files with 787765 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
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; }
}
}