1234567891011121314151617181920212223 |
- //
- // RQVipAuthorityItemViewModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/3/1.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVipAuthorityItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, strong) RQTypeModel *typeModel;
- @property (nonatomic, readwrite, assign) BOOL isCenter;
- @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
- /// init
- - (instancetype)initWithRQTypeModel:(RQTypeModel *)typeModel;
- @end
- NS_ASSUME_NONNULL_END
|