HttpTool.cs 266 B

123456789101112
  1. using EZXR.Glass.Core;
  2. namespace EZXR.Glass.Network.Http
  3. {
  4. /// @cond UN_DOC
  5. public class HttpTool : SingletonManager<HttpTool>
  6. {
  7. // 无法在外界使用构造函数,确保Singleton
  8. protected HttpTool() { }
  9. }
  10. /// @endcond
  11. }