12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // 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
|