1234567891011121314151617181920212223 |
- //
- // NYLIHomePageSimulationExamItemViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2025/2/14.
- // Copyright © 2025 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYLIHomePageSimulationExamItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
- @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
- @property (nonatomic, readwrite, copy) void (^operationLI)(void);
- /// init
- - (instancetype)initWithRQHomePageCarType:(RQHomePageCarType)homePageCarType homePageSubjectType:(RQHomePageSubjectType)homePageSubjectType;
- @end
- NS_ASSUME_NONNULL_END
|