123456789101112131415161718192021222324252627 |
- //
- // NYHomePageOneBigItemViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2024/11/22.
- // Copyright © 2024 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYHomePageOneBigItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readwrite, strong) RQTreeListModel *treeListModel;
- @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
- @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
- @property (nonatomic, readwrite, copy) NSAttributedString *mnksStr;
- @property (nonatomic, readwrite, copy) NSAttributedString *sxlxtStr;
- /// init
- - (instancetype)initWithNYHomePageCarType:(RQHomePageCarType)homePageCarType homePageSubjectType:(RQHomePageSubjectType)homePageSubjectType treeListModel:(RQTreeListModel *)treeListModel;
- @end
- NS_ASSUME_NONNULL_END
|