// // RQVipContentNew23ItemViewModel.m // jiaPei // // Created by 张嵘 on 2022/10/20. // Copyright © 2022 JCZ. All rights reserved. // #import "RQVipContentNew23ItemViewModel.h" @interface RQVipContentNew23ItemViewModel () @property (nonatomic, readwrite, strong) RQTypeModel *typeModel; @property (nonatomic, readwrite, copy) NSString *contentStr; @end @implementation RQVipContentNew23ItemViewModel - (instancetype)initWithRQTypeModel:(RQTypeModel *)typeModel{ if (self = [super init]) { self.typeModel = typeModel; CGFloat RQVipContentCellWidth = RQ_SCREEN_WIDTH; CGFloat RQVipContentCellHeight = RQVipContentCellWidth * (265.f / 375.f) ; self.itemSize = CGSizeMake(RQVipContentCellWidth, RQVipContentCellHeight); } return self; } - (NSString *)itemClassName { return @"RQVipContentNew23Cell"; } @end