123456789101112131415161718192021 |
- //
- // RQVipAuthorityNewItemViewModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/11/14.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVipAuthorityNewItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, strong) RQTypeModel *chooseTypeModel;
- @property (nonatomic, readonly, strong) NSString *bgImageName;
- @property (nonatomic, readonly, strong) NSString *authorityTitle;
- /// init
- - (instancetype)initWithChooseTypeModel:(RQTypeModel *)chooseTypeModel;
- @end
- NS_ASSUME_NONNULL_END
|