123456789101112131415161718192021222324 |
- //
- // YMAboutUsCellViewModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/2/21.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMAboutUsCellViewModel.h"
- @interface YMAboutUsCellViewModel ()
- /// 关于我们标题
- @property (nonatomic, copy, readwrite) NSString *aboutUsTitle;
- /// 关于我们功能类型
- @property (nonatomic, assign, readwrite) YMAboutUsFunctionsType aboutUsFunctionsType;
- @end
- @implementation YMAboutUsCellViewModel
- - (void)ym_initialize{
- [super ym_initialize];
- NSDictionary *dic = [self.params dictionaryValueForKey:ParamsModel defaultValue:@{}];
- self.aboutUsTitle = [dic stringValueForKey:@"title" defaultValue:@""];;
- self.aboutUsFunctionsType = [dic integerValueForKey:ParamsCategoryType defaultValue:YMAboutUsFunctionsTypeUserAgreement];
- }
- @end
|