1234567891011121314151617181920212223242526 |
- //
- // 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, 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;
- @end
- NS_ASSUME_NONNULL_END
|