123456789101112131415161718192021222324 |
- //
- // YOUPAILCShareModel.m
- // LiveChat
- //
- // Created by 张灿 on 2018/9/26.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import "YOUPAILCShareModel.h"
- @implementation YOUPAILCShareModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaiptitle":@"title",
- @"youpaipcontent":@"content",
- @"youpaipurl":@"url",
- @"youpaipimage_url":@"image_url",
- @"youpaipurl_wechat":@"url_wechat",
- };
- }
- @end
|