XYVipAPIManager.h 508 B

123456789101112131415161718192021
  1. //
  2. // XYVipAPIManager.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/4/4.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import "ZYLAPIManager.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface XYVipAPIManager : ZYLAPIManager
  11. /// 获取会员项目
  12. /// @param successHandler 请求成功
  13. /// @param failureHandler 请求失败
  14. - (NSNumber *)getVipItemsSuccessHandler:(ZYLNetworkTaskSuccessHandler)successHandler failureHandler:(ZYLNetworkTaskFailureHandler)failureHandler;
  15. @end
  16. NS_ASSUME_NONNULL_END