ILJClient.cs 280 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. namespace LJLib.Net.SPI.Client
  5. {
  6. public interface ILJClient : IDisposable
  7. {
  8. string DoExcute(string apiName, string requestJSON);
  9. void Beat();
  10. void Dispose();
  11. }
  12. }