25 lines
332 B
Objective-C
25 lines
332 B
Objective-C
//
|
|
// HomeLittleGameRoomModel.m
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/3/24.
|
|
//
|
|
|
|
#import "HomeLittleGameRoomModel.h"
|
|
|
|
@implementation HomeLittleGameRoomModel
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{
|
|
@"micUsers": [HomeLittleGameMicUserModel class]
|
|
};
|
|
}
|
|
|
|
@end
|
|
|
|
|
|
@implementation HomeLittleGameMicUserModel
|
|
|
|
|
|
|
|
@end
|