修改获取用户列表API

This commit is contained in:
2018-12-17 21:53:52 +08:00
parent 88053b0cd4
commit f7006ad5c1
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) { }
}
}