NYLIVipContentItemViewModel.h 657 B

12345678910111213141516171819202122232425
  1. //
  2. // NYLIVipContentItemViewModel.h
  3. // jiaPei
  4. //
  5. // Created by Ning.ge on 2025/2/15.
  6. // Copyright © 2025 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface NYLIVipContentItemViewModel : RQCommonCollectionItemViewModel
  11. @property (nonatomic, readonly, strong) RQTypeModel *typeModel;
  12. @property (nonatomic, readwrite, assign) BOOL isCenter;
  13. @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
  14. @property (nonatomic, readwrite, assign) NSInteger type;
  15. /// init
  16. - (instancetype)initWithRQTypeModel:(RQTypeModel *)typeModel type:(NSInteger)type;
  17. @end
  18. NS_ASSUME_NONNULL_END