1234567891011121314151617181920212223242526272829 |
- //
- // YOUPAILCVideoChatMessageModel.m
- // LiveChat
- //
- // Created by 张灿 on 2018/10/15.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import "YOUPAILCVideoChatMessageModel.h"
- @implementation YOUPAILCVideoChatMessageModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaiptype":@"type",
- @"youpaiplink_type":@"link_type",
- @"youpaiplink_url":@"link_url",
- @"youpaipcontent":@"content",
- @"youpaipfrom_uid":@"from_uid",
- @"youpaipto_uid":@"to_uid",
- @"youpaipfrom_nickname":@"from_nickname",
- @"youpaipto_nickname":@"to_nickname",
- @"youpaipfrom_avatar":@"from_avatar",
- @"youpaipto_avatar":@"to_avatar",
- };
- }
- @end
|