Files
LL-28/tongxin/NetWorkHelper/UDP/IDataCell.cs
2025-11-14 09:41:37 +08:00

13 lines
212 B
C#

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