NYLIVipContentNewItemViewModel.h 568 B

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