30 lines
583 B
Objective-C
30 lines
583 B
Objective-C
//
|
|
// QXRoomBestFriendModel.m
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/20.
|
|
//
|
|
|
|
#import "QXRoomBestFriendModel.h"
|
|
|
|
@implementation QXRoomBestFriendModel
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"no_cp": @"QXRoomBestFriendListModel",
|
|
@"cp": @"QXUserCpInfoModel",
|
|
};
|
|
}
|
|
@end
|
|
@implementation QXRoomBestFriendListModel
|
|
+(NSDictionary<NSString *,id> *)modelContainerPropertyGenericClass{
|
|
return @{
|
|
@"relation_list": @"QXRelationshipListModel",
|
|
};
|
|
}
|
|
@end
|
|
|
|
@implementation QXHeartBeatSpaceListModel
|
|
|
|
@end
|
|
|