| 12345678910111213141516171819202122232425262728293031 |
- //
- // BogoRechargePayCollection.h
- // BuguLive
- //
- // Created by 宋晨光 on 2021/4/8.
- // Copyright © 2021 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AccountRechargeModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface BogoRechargePayMoneyCollection : UIView<UICollectionViewDelegate,UICollectionViewDataSource>
- @property(nonatomic, strong) NSMutableArray *listArr;
- @property(nonatomic, strong) UILabel *titleL;
- @property(nonatomic, strong) UICollectionView *collectionView;
- @property(nonatomic, strong) AccountRechargeModel *model;
- @property(nonatomic, strong) PayMoneyModel *selectModel;
- @end
- NS_ASSUME_NONNULL_END
|