NYHomePageOneBigItemViewModel.h 875 B

123456789101112131415161718192021222324252627
  1. //
  2. // NYHomePageOneBigItemViewModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2024/11/22.
  6. // Copyright © 2024 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYHomePageOneBigItemViewModel : RQCommonCollectionItemViewModel
  11. @property (nonatomic, readwrite, strong) RQTreeListModel *treeListModel;
  12. @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
  13. @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
  14. @property (nonatomic, readwrite, copy) NSAttributedString *mnksStr;
  15. @property (nonatomic, readwrite, copy) NSAttributedString *sxlxtStr;
  16. /// init
  17. - (instancetype)initWithNYHomePageCarType:(RQHomePageCarType)homePageCarType homePageSubjectType:(RQHomePageSubjectType)homePageSubjectType treeListModel:(RQTreeListModel *)treeListModel;
  18. @end
  19. NS_ASSUME_NONNULL_END