123456789101112131415161718192021222324 |
- //
- // RQHomePageOneOrFourBigItemViewModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/6/10.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHomePageOneOrFourBigItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
- @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
- @property (nonatomic, readwrite, assign) BOOL isLeft;
- @property (nonatomic, readonly, copy) NSAttributedString *leftStr;
- @property (nonatomic, readonly, copy) NSAttributedString *rightStr;
- /// init
- - (instancetype)initWithRQHomePageCarType:(RQHomePageCarType)homePageCarType homePageSubjectType:(RQHomePageSubjectType)homePageSubjectType homePageOneOrFourItemModel:(RQHomePageOneOrFourItemModel *)homePageOneOrFourItemModel;
- @end
- NS_ASSUME_NONNULL_END
|