123456789101112131415161718192021 |
- //
- // XYVipAPIManager.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/4/4.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "ZYLAPIManager.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface XYVipAPIManager : ZYLAPIManager
- /// 获取会员项目
- /// @param successHandler 请求成功
- /// @param failureHandler 请求失败
- - (NSNumber *)getVipItemsSuccessHandler:(ZYLNetworkTaskSuccessHandler)successHandler failureHandler:(ZYLNetworkTaskFailureHandler)failureHandler;
- @end
- NS_ASSUME_NONNULL_END
|