refactoring, file packet

This commit is contained in:
2023-10-12 16:21:04 +09:00
parent 08207c9eec
commit 044ace6552
13 changed files with 247 additions and 37 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace STcpHelper.Packet
{
public interface ISTcpAsyncPacket
{
Task<byte[]> Serialize();
}
}