You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
457 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace PhalApiClientSDK
  6. {
  7. /**
  8. * 接口结果解析器
  9. *
  10. * - 可用于不同接口返回格式的处理
  11. */
  12. public interface PhalApiClientParser
  13. {
  14. /**
  15. * 结果解析
  16. * @param String apiResult
  17. * @return PhalApiClientResponse
  18. */
  19. PhalApiClientResponse parse(String apiResult);
  20. }
  21. }