// // YMPersonalInfoModel.m // MSYOUPAI // // Created by YoMi on 2024/2/17. // Copyright © 2024 MS. All rights reserved. // #import "YMPersonalInfoModel.h" @implementation YMPersonalInfoModel + (NSDictionary *)modelContainerPropertyGenericClass { return @{ @"gifts":[YMGiftModel class], @"voice":[YMVoiceModel class], @"online":[YMOnlineModel class], @"guard":[YMGuardModel class], @"card_info":[YMCardInfoModel class], @"basic_info_detail":[YMBasicInfoDetailModel class], @"album_videos": [YMAlbumVideosModel class], @"albums": [YMAlbumsModel class], @"albums_list":[YMAlbumsModel class], @"basic_info": [YMBasicInfoModel class], @"label": [YMTagModel class], @"dynamic": [YMDynamicModel class], }; } @end @implementation YMGiftModel + (NSDictionary *)modelCustomPropertyMapper { return @{ @"gift_id":@"id", }; } @end @implementation YMVoiceModel @end @implementation YMOnlineModel + (NSDictionary *)modelCustomPropertyMapper { return @{ @"onlineColor":@"newColor", @"onlineMsg":@"newMsg", }; } @end @implementation YMGuardModel @end @implementation YMCardInfoModel @end @implementation YMBasicInfoDetailModel @end @implementation YMAlbumVideosModel @end @implementation YMAlbumsModel @end @implementation YMAlbumsListModel @end @implementation YMBasicInfoModel @end @implementation YMDynamicModel @end