12345678910111213141516171819202122 |
- //
- // RQPlaceBuyItemViewModel.h
- // JiaPei
- //
- // Created by 张嵘 on 2023/4/19.
- //
- #import "RQCommonItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQPlaceBuyItemViewModel : RQCommonItemViewModel
- @property (nonatomic, readonly, strong) RQPlaceListModel *placeListModel;
- @property (nonatomic, readonly, assign) BOOL isBuy;
- @property (nonatomic, readwrite, assign) BOOL isAgree;
- @property (nonatomic, readonly, assign) BOOL chooseAgree;
- @property (nonatomic, strong) NYWPViewModel *wpviewModel;
- - (instancetype)initWithPlaceListModel:(RQPlaceListModel *)placeListModel;
- @end
- NS_ASSUME_NONNULL_END
|