1234567891011121314151617181920212223 |
- //
- // RQHomeSubPageListItemViewModel.h
- // SDJK
- //
- // Created by 张嵘 on 2021/8/4.
- //
- #import "RQCommonItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHomeSubPageListItemViewModel : RQCommonItemViewModel
- /// homePageCarType
- @property (nonatomic, readwrite, assign) RQHomePageCarType homePageCarType;
- /// homePageSubjectType
- @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
- /// homeSubPageType
- @property (nonatomic, readwrite, assign) RQHomeSubPageType homeSubPageType;
- /// gotoLocalTopicsCommand
- @property (nonatomic, readonly, strong) RACCommand *gotoLocalTopicsCommand;
- @end
- NS_ASSUME_NONNULL_END
|