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