// // YMTaskModel.m // MSYOUPAI // // Created by YoMi on 2024/2/17. // Copyright © 2024 MS. All rights reserved. // #import "YMTaskModel.h" @implementation YMTaskModel + (NSDictionary *)modelContainerPropertyGenericClass { return @{ @"album_task":[YMTaskAlbumModel class], @"avatar_task":[YMTaskAvatarModel class], @"over_task":[YMTaskOverModel class], @"sign_task":[YMTaskSignModel class], @"video_task":[YMTaskVideoModel class] }; } @end @implementation YMTaskAvatarModel @end @implementation YMTaskAlbumModel @end @implementation YMTaskOverModel @end @implementation YMTaskSignModel @end @implementation YMTaskVideoModel @end