1234567891011121314151617181920 |
- //
- // RQVipTimeItemViewModel.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/11/17.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQCommonCollectionItemViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQVipTimeItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, strong) RQVideoVipModel *videoVipModel;
- @property (nonatomic, readonly, assign) RQHomePageSubjectType homePageSubjectType;
- - (instancetype)initVideoVipModel:(RQVideoVipModel *)videoVipModel homePageSubjectType:(RQHomePageSubjectType)homePageSubjectType;
- @end
- NS_ASSUME_NONNULL_END
|