// // RQExamProbabilyItemViewModel.m // jiaPei // // Created by 张嵘 on 2022/7/29. // Copyright © 2022 JCZ. All rights reserved. // #import "RQExamProbabilyItemViewModel.h" @implementation RQExamProbabilyItemViewModel /// init - (instancetype)init { if (self = [super init]) { self.rowHeight = RQ_FIT_HORIZONTAL(417.f); self.operation = ^{ }; } return self; } - (NSString *)itemClassName { return @"RQExamProbabilyCell"; } @end