RQHomePageSubjectOneOrFourViewModel.h 619 B

1234567891011121314151617181920212223
  1. //
  2. // RQHomePageSubjectOneOrFourViewModel.h
  3. // JSJP
  4. //
  5. // Created by 张嵘 on 2021/7/29.
  6. //
  7. #import "RQCommonCollectionViewModel.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface RQHomePageOneOrFourItemModel : RQBaseModel
  10. @property (nonatomic, readonly, copy) NSString *titleStr;
  11. @property (nonatomic, readonly, copy) NSString *iconImgStr;
  12. - (instancetype)initWithTitleStr:(NSString *)titleStr iconImgStr:(NSString *)iconImgStr;
  13. @end
  14. @interface RQHomePageSubjectOneOrFourViewModel : RQCommonCollectionViewModel
  15. @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
  16. @end
  17. NS_ASSUME_NONNULL_END