RechargeDesCell.h 861 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // RechargeDesCell.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 17/3/13.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AccountRechargeModel.h"
  10. @class RechargeDesCell;
  11. @protocol RechargeDesCellDelegate<NSObject>
  12. - (void)clickWithRechargeDesCell:(RechargeDesCell *)cell;
  13. @end
  14. @interface RechargeDesCell : UICollectionViewCell
  15. @property (nonatomic, weak) id<RechargeDesCellDelegate> delegate;
  16. @property (nonatomic, strong) UIView * rechargeView;
  17. @property (nonatomic, strong) UILabel * numberLabel;
  18. @property (nonatomic, strong) UIImageView * diamondImageView;
  19. @property (nonatomic, strong) UILabel * priceLabel;
  20. @property (nonatomic, strong) UILabel * gameCoinLabel;
  21. @property (nonatomic, strong) UILabel * otherPayLabel;
  22. @property (nonatomic, strong) PayMoneyModel * model;
  23. @end