12345678910111213141516171819202122 |
- //
- // HCCommunityModel.m
- // hc
- //
- // Created by hc on 2018/5/16.
- // Copyright © 2018年 hc. All rights reserved.
- //
- #import "HCCommunityModel.h"
- @implementation HCCommunityModel
- + (NSDictionary<NSString *,id> *)modelCustomPropertyMapper {
- return @{@"Id":@"id"};
- }
- + (NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass {
- return @{@"detail":[HCCommunityDetailModel class]};
- }
- @end
|