YOUPAILCVideoChatMessageModel.m 732 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // YOUPAILCVideoChatMessageModel.m
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/10/15.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import "YOUPAILCVideoChatMessageModel.h"
  9. @implementation YOUPAILCVideoChatMessageModel
  10. + (NSDictionary *)mj_replacedKeyFromPropertyName
  11. {
  12. return @{
  13. @"youpaiptype":@"type",
  14. @"youpaiplink_type":@"link_type",
  15. @"youpaiplink_url":@"link_url",
  16. @"youpaipcontent":@"content",
  17. @"youpaipfrom_uid":@"from_uid",
  18. @"youpaipto_uid":@"to_uid",
  19. @"youpaipfrom_nickname":@"from_nickname",
  20. @"youpaipto_nickname":@"to_nickname",
  21. @"youpaipfrom_avatar":@"from_avatar",
  22. @"youpaipto_avatar":@"to_avatar",
  23. };
  24. }
  25. @end