RQHTTPService+RQGetMyQuestionFavs.h 501 B

123456789101112131415161718192021222324
  1. //
  2. // RQHTTPService+RQGetMyQuestionFavs.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/8/23.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQHTTPService.h"
  9. /// 新增题目记录
  10. #define RQ_POST_GetMyQuestionFavs @"student/getMyQuestionFavs"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface RQHTTPService (RQGetMyQuestionFavs)
  13. /**
  14. 获取题目记录
  15. @return Returns a signal which will send complete, or error.
  16. */
  17. - (RACSignal *)getMyQuestionFavs;
  18. @end
  19. NS_ASSUME_NONNULL_END