1234567891011121314151617181920212223 |
- //
- // RQVipBuyNewView.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/10/21.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVipBuyNewView : UIView
- @property (nonatomic, readwrite, strong) RQTypeModel *typeModel;
- @property (weak, nonatomic) IBOutlet QMUIButton *buyBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *priceBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *userAgreeBtn;
- @property (weak, nonatomic) IBOutlet QMUIButton *userAgreementBtn;
- + (instancetype)vipBuyNewView;
- @end
- NS_ASSUME_NONNULL_END
|