RQVipAuthorityCell.h 970 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // RQVipAuthorityCell.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/3/1.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import "RQCommonCollectionViewCell.h"
  9. #import "RQVipAuthorityItemViewModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RQVipAuthorityCell : RQCommonCollectionViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *oneIconImageView;
  13. @property (weak, nonatomic) IBOutlet UILabel *oneTitleLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *oneContentLabel;
  15. @property (weak, nonatomic) IBOutlet UIImageView *twoIconImageView;
  16. @property (weak, nonatomic) IBOutlet UILabel *twoTitleLabel;
  17. @property (weak, nonatomic) IBOutlet UILabel *twoContentLabel;
  18. @property (weak, nonatomic) IBOutlet UIImageView *threeIconImageView;
  19. @property (weak, nonatomic) IBOutlet UILabel *threeTitleLabel;
  20. @property (weak, nonatomic) IBOutlet UILabel *threeContentLabel;
  21. @property (weak, nonatomic) IBOutlet UILabel *adContentLabel;
  22. @end
  23. NS_ASSUME_NONNULL_END