20 lines
332 B
Objective-C
20 lines
332 B
Objective-C
//
|
|
// HomeLiveLookRecordModel.m
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/7/18.
|
|
//
|
|
|
|
#import "HomeLiveLookRecordModel.h"
|
|
#import "HomeRecommendRoomModel.h"
|
|
|
|
@implementation HomeLiveLookRecordModel
|
|
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{
|
|
@"singleRoomList": [HomeRecommendRoomModel class]
|
|
};
|
|
}
|
|
|
|
@end
|