123456789101112131415161718192021222324 |
- //
- // RQVipCenterCell.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/8/11.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionViewCell.h"
- #import "RQVipCenterItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVipCenterCell : RQCommonCollectionViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *bgImageView;
- @property (weak, nonatomic) IBOutlet QMUIButton *leftIconVipBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *leftVipBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *rightVipBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *openVipBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *dateVipBtn;
- @end
- NS_ASSUME_NONNULL_END
|