initial commit for client with c#

This commit is contained in:
2018-12-15 00:29:41 +08:00
parent c43d9a1a75
commit 1655b92d9a
30 changed files with 1836 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//此文件定义Json序列化与反序列化时使用的数据结构,仅内部使用
namespace Interact
{
//登录信息包头
internal class JsonLogInfoHead : BaseHead
{
public string User;
public string Pwd;
}
}