1234567891011121314151617181920212223242526272829303132 |
- //
- // RQHTTPService+RQGetVideoVip.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/3/4.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQHTTPService.h"
- #import "RQVideoVipModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHTTPService (RQGetVideoVip)
- /**
- 获取用户vip信息
-
- @param userId 用户Id
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)getVideoVipWithUserId:(NSString *)userId;
- /**
- 获取用户vip信息
-
- @param userId 用户Id
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)getVipWithUserId:(NSString *)userId;
- @end
- NS_ASSUME_NONNULL_END
|