RoomUserInfo.m 383 B

123456789101112131415161718192021
  1. //
  2. // RoomUserInfo.m
  3. // UniversalApp
  4. //
  5. // Created by bogokj on 2019/8/1.
  6. // Copyright © 2019 voidcat. All rights reserved.
  7. //
  8. #import "RoomUserInfo.h"
  9. @implementation RoomUserInfo
  10. - (NSString *)description{
  11. return [NSString stringWithFormat:@"%@",[self mj_JSONObject]];
  12. }
  13. + (NSDictionary *)mj_objectClassInArray{
  14. return @{@"ranking_three":@"RoomUserInfo"};
  15. }
  16. @end