initial commit for client with c#

This commit is contained in:
Mattuy
2018-12-15 00:29:41 +08:00
parent a6190a9bb1
commit 145c242d4b
30 changed files with 1836 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Interact
{
//字符串常量
public static class Strings
{
public const string Token = "Token";
public const string Operation = "Operation";
public const string Error = "Error";
}
}