12345678910111213141516171819202122232425 |
- //
- // NYLIVipContentItemViewModel.h
- // jiaPei
- //
- // Created by Ning.ge on 2025/2/15.
- // Copyright © 2025 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYLIVipContentItemViewModel : RQCommonCollectionItemViewModel
- @property (nonatomic, readonly, strong) RQTypeModel *typeModel;
- @property (nonatomic, readwrite, assign) BOOL isCenter;
- @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType;
- @property (nonatomic, readwrite, assign) NSInteger type;
- /// init
- - (instancetype)initWithRQTypeModel:(RQTypeModel *)typeModel type:(NSInteger)type;
- @end
- NS_ASSUME_NONNULL_END
|