NYHomePageOneBigItemViewModel.h 755 B

1234567891011121314151617181920212223242526
  1. //
  2. // NYHomePageOneBigItemViewModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2024/11/22.
  6. // Copyright © 2024 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYHomePageOneBigItemViewModel : RQCommonCollectionItemViewModel
  11. @property (nonatomic, readonly, assign) RQHomePageCarType homePageCarType;
  12. @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
  13. @property (nonatomic, readwrite, copy) NSAttributedString *mnksStr;
  14. @property (nonatomic, readwrite, copy) NSAttributedString *sxlxtStr;
  15. /// init
  16. - (instancetype)initWithNYHomePageCarType:(RQHomePageCarType)homePageCarType homePageSubjectType:(RQHomePageSubjectType)homePageSubjectType;
  17. @end
  18. NS_ASSUME_NONNULL_END