修改获取用户列表API

This commit is contained in:
Mattuy
2018-12-17 21:53:52 +08:00
parent 9894de2953
commit 82bc190cf9
10 changed files with 145 additions and 96 deletions
+12
View File
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Interact
{
class ConnectionBrokenException : Exception
{
public ConnectionBrokenException(string message) : base(message) { }
}
}