25111106 正压压28出货版本

This commit is contained in:
moxiliang
2025-11-14 09:41:37 +08:00
parent dcd9b20fb0
commit c5a60cc54c
477 changed files with 96521 additions and 647622 deletions

View File

@@ -0,0 +1,12 @@
namespace NetWorkHelper
{
/// <summary>
/// 消息数据单元接口
/// </summary>
public interface IDataCell
{
byte[] ToBuffer();
void FromBuffer(byte[] buffer);
}
}