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
+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";
}
}