RQHTTPService+RQGetVersionList.h 367 B

1234567891011121314151617181920212223
  1. //
  2. // RQHTTPService+RQGetVersionList.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/1/11.
  6. //
  7. #import "RQHTTPService.h"
  8. #import "RQVersionModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHTTPService (RQGetVersionList)
  11. /**
  12. 查询version列表
  13. @return Returns a signal which will send complete, or error.
  14. */
  15. - (RACSignal *)getVersionList;
  16. @end
  17. NS_ASSUME_NONNULL_END