12345678910111213141516171819202122232425 |
- //
- // YMDynamicDetailModel.m
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/21.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "YMDynamicDetailModel.h"
- @implementation YMDynamicDetailModel
- + (NSDictionary *)modelCustomPropertyMapper {
- return @{@"dynamic_id":@"id",};
- }
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{
- @"images": [YMDynamicImageModel class],
- @"user":[YMDynamicUserModel class]
- };
- }
- @end
- @implementation YMDynamicUserModel
- @end
|