This commit is contained in:
2023-10-13 14:15:26 +09:00
parent 044ace6552
commit d4dc58c609
28 changed files with 359 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace STcpHelper.Utility
{
internal interface ISSerializer
{
string Serialize<T>(T obj);
T Deserialize<T>(string str);
}
}