1234567891011121314151617181920212223242526272829 |
- //
- // XYRechargeItemsLIstViewController.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2019/12/23.
- // Copyright © 2019 翟玉磊. All rights reserved.
- //
- #import "BaseTableViewController.h"
- #import "XYCoinRechargeItemModel.h"
- #import <JXCategoryView/JXCategoryView.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol XYRechargeItemsLIstViewControllerDelegate <NSObject>
- - (void)refreshCoinBalance:(NSString *)amount;
- @end
- @interface XYRechargeItemsLIstViewController : BaseCollectionViewController<JXCategoryListContentViewDelegate>
- @property (nonatomic, readwrite, weak) id<XYRechargeItemsLIstViewControllerDelegate>delegate;
- @property (nonatomic, readwrite, strong) XYCoinRechargeItemModel *itemModel;
- @end
- NS_ASSUME_NONNULL_END
|