123456789101112131415161718192021222324 |
- //
- // NYLIVipAuthorityNewItemViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2025/2/6.
- // Copyright © 2025 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYLIVipAuthorityNewItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, strong) RQTypeModel *chooseTypeModel;
- @property (nonatomic, readonly, strong) NSString *bgImageName;
- @property (nonatomic, readonly, strong) NSString *authorityTitle;
- @property (nonatomic, readonly, strong) NSString *authorityTitle01;
- @property (nonatomic, readonly, strong) NSString *authorityTitle02;
- /// init
- - (instancetype)initWithChooseTypeModel:(RQTypeModel *)chooseTypeModel;
- @end
- NS_ASSUME_NONNULL_END
|