1234567891011121314151617181920212223 |
- //
- // RQHTTPService+RQGetVersionList.h
- // SDJK
- //
- // Created by 张嵘 on 2022/1/11.
- //
- #import "RQHTTPService.h"
- #import "RQVersionModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHTTPService (RQGetVersionList)
- /**
- 查询version列表
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)getVersionList;
- @end
- NS_ASSUME_NONNULL_END
|