// // RQPayPriceHeaderGroupViewModel.m // jiaPei // // Created by 张嵘 on 2022/6/7. // Copyright © 2022 JCZ. All rights reserved. // #import "RQPayPriceHeaderGroupViewModel.h" @interface RQPayPriceHeaderGroupViewModel () @property (nonatomic, readwrite, strong) RQTypeModel *typeModel; @end @implementation RQPayPriceHeaderGroupViewModel /// init - (instancetype)initWithRQTypeModel:(RQTypeModel *)typeModel { if (self = [super init]) { self.typeModel = typeModel; self.headerHeight = RQ_FIT_HORIZONTAL(86.f); } return self; } @end