123456789101112131415161718192021 |
- //
- // RQVipTrainPriceItemViewModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2023/1/17.
- // Copyright © 2023 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVipTrainPriceItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, strong) RQTypeModel *typeModel;
- @property (nonatomic, readonly, assign) BOOL isSelect;
- /// init
- - (instancetype)initWithRQTypeModel:(RQTypeModel *)typeModel chooseTypeModel:(RQTypeModel *)chooseTypeModel typeModels:(NSArray *)typeModels;
- @end
- NS_ASSUME_NONNULL_END
|