NYLIVipAuthorityNewItemViewModel.h 727 B

123456789101112131415161718192021222324
  1. //
  2. // NYLIVipAuthorityNewItemViewModel.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 NYLIVipAuthorityNewItemViewModel : RQCommonCollectionItemViewModel
  11. @property (nonatomic, readonly, strong) RQTypeModel *chooseTypeModel;
  12. @property (nonatomic, readonly, strong) NSString *bgImageName;
  13. @property (nonatomic, readonly, strong) NSString *authorityTitle;
  14. @property (nonatomic, readonly, strong) NSString *authorityTitle01;
  15. @property (nonatomic, readonly, strong) NSString *authorityTitle02;
  16. /// init
  17. - (instancetype)initWithChooseTypeModel:(RQTypeModel *)chooseTypeModel;
  18. @end
  19. NS_ASSUME_NONNULL_END