// // XYChatRoomInfoModel.m // Starbuds // // Created by 翟玉磊 on 2020/7/8. // Copyright © 2020 翟玉磊. All rights reserved. // #import "XYChatRoomInfoModel.h" @implementation XYChatRoomInfoModel - (void)setSeats:(NSArray *)seats { NSMutableArray *temp = [NSMutableArray array]; for (NSDictionary *dict in seats) { XYChatRoomSeatsModel *model = XYChatRoomSeatsModel.new; [model yy_modelSetWithDictionary:dict]; [temp addObject:model]; } _seats = [NSArray arrayWithArray:temp]; } @end @implementation XYChatRoomSeatsModel @end @implementation XYChatRoomSeatsUserModel @end @implementation XYChatRoomRTCAuthInfoModel @end