12345678910111213141516171819202122232425262728 |
- //
- // RQVipAuthorityNewCell.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/11/14.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionViewCell.h"
- #import "RQVipAuthorityNewItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVipAuthorityNewCell : RQCommonCollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *oneIconImageView;
- @property (weak, nonatomic) IBOutlet UILabel *oneTitleLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *twoIconImageView;
- @property (weak, nonatomic) IBOutlet UILabel *twoTitleLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *threeIconImageView;
- @property (weak, nonatomic) IBOutlet UILabel *threeTitleLabel;
- @property (weak, nonatomic) IBOutlet UIImageView *fourIconImageView;
- @property (weak, nonatomic) IBOutlet UILabel *fourTitleLabel;
- @end
- NS_ASSUME_NONNULL_END
|