// // YMMineInfoModel.m // MSYOUPAI // // Created by YoMi on 2024/2/16. // Copyright © 2024 MS. All rights reserved. // #import "YMMineInfoModel.h" @implementation YMMineInfoModel + (NSDictionary *)modelContainerPropertyGenericClass { return @{ @"anchor": [YMAnchorModel class], @"game_info":[YMGameInfoModel class], @"gr": [YMGrModel class], @"red_dot":[YMRedDotModel class], @"usercount":[YMQuantityInfoModel class], @"userinfo":[YMUserInfoModel class], @"webUrl":[YMWebUrlModel class], }; } @end @implementation YMGameInfoModel @end @implementation YMRedDotModel @end @implementation YMQuantityInfoModel @end @implementation YMUserInfoModel + (NSDictionary *)modelContainerPropertyGenericClass { return @{ @"badge_info": [YMBadgeInfoModel class], }; } @end