XYRechargeItemsLIstViewController.h 728 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // XYRechargeItemsLIstViewController.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2019/12/23.
  6. // Copyright © 2019 翟玉磊. All rights reserved.
  7. //
  8. #import "BaseTableViewController.h"
  9. #import "XYCoinRechargeItemModel.h"
  10. #import <JXCategoryView/JXCategoryView.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. @protocol XYRechargeItemsLIstViewControllerDelegate <NSObject>
  13. - (void)refreshCoinBalance:(NSString *)amount;
  14. @end
  15. @interface XYRechargeItemsLIstViewController : BaseCollectionViewController<JXCategoryListContentViewDelegate>
  16. @property (nonatomic, readwrite, weak) id<XYRechargeItemsLIstViewControllerDelegate>delegate;
  17. @property (nonatomic, readwrite, strong) XYCoinRechargeItemModel *itemModel;
  18. @end
  19. NS_ASSUME_NONNULL_END