NYLIVipSinglePriceItemViewModel.h 578 B

1234567891011121314151617181920
  1. //
  2. // NYLIVipSinglePriceItemViewModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2025/2/7.
  6. // Copyright © 2025 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYLIVipSinglePriceItemViewModel : RQCommonCollectionItemViewModel
  11. @property (nonatomic, readonly, strong) RQTypeModel *typeModel;
  12. @property (nonatomic, readonly, assign) BOOL isSelect;
  13. /// init
  14. - (instancetype)initWithRQTypeModel:(RQTypeModel *)typeModel chooseTypeModel:(RQTypeModel *)chooseTypeModel typeModels:(NSArray *)typeModels;
  15. @end
  16. NS_ASSUME_NONNULL_END