NYLIVipSinglePriceItemViewModel.h 709 B

123456789101112131415161718192021
  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. @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
  14. /// init
  15. - (instancetype)initWithRQTypeModel:(RQTypeModel *)typeModel chooseTypeModel:(RQTypeModel *)chooseTypeModel typeModels:(NSArray *)typeModels subjectType:(RQHomePageSubjectType)subjectType;
  16. @end
  17. NS_ASSUME_NONNULL_END