// // RQVipCenterSubViewModel.m // jiaPei // // Created by 张嵘 on 2022/8/8. // Copyright © 2022 JCZ. All rights reserved. // #import "RQVipCenterSubViewModel.h" @interface RQVipCenterSubViewModel () @property (nonatomic, readwrite, assign) RQHomePageSubjectType homePageSubjectType; @end @implementation RQVipCenterSubViewModel - (instancetype)initWithServices:(id)services params:(NSDictionary *)params { if (self = [super initWithServices:services params:params]) { self.homePageSubjectType = [params[RQHomePageSubjectTypeKey] integerValue]; } return self; } @end