BogoRechargePayMoneyCollection.h 643 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // BogoRechargePayCollection.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/4/8.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AccountRechargeModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BogoRechargePayMoneyCollection : UIView<UICollectionViewDelegate,UICollectionViewDataSource>
  12. @property(nonatomic, strong) NSMutableArray *listArr;
  13. @property(nonatomic, strong) UILabel *titleL;
  14. @property(nonatomic, strong) UICollectionView *collectionView;
  15. @property(nonatomic, strong) AccountRechargeModel *model;
  16. @property(nonatomic, strong) PayMoneyModel *selectModel;
  17. @end
  18. NS_ASSUME_NONNULL_END