123456789101112131415161718192021222324252627 |
- //
- // RQVipAuthoritySmallCell.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/3/1.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionViewCell.h"
- #import "RQVipAuthoritySmallItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVipAuthoritySmallCell : 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
|