123456789101112131415161718 |
- //
- // LDCommunityDetailModel.m
- // YouHuiProject
- //
- // Created by jcymac on 2018/5/23.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LDCommunityDetailModel.h"
- @implementation LDCommunityDetailModel
- + (NSDictionary<NSString *,id> *)modelCustomPropertyMapper {
- return @{@"Id":@"id",
- @"texts":@"copyText",
- };
- }
- @end
|