This commit is contained in:
启星
2025-11-21 16:17:05 +08:00
parent 7ac937ddbf
commit 8913ea6f48
283 changed files with 8474 additions and 800 deletions

View File

@@ -0,0 +1,22 @@
//
// QXRoomBestFriendModel.h
// QXLive
//
// Created by 启星 on 2025/11/20.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@class QXRoomBestFriendListModel,QXRoomBestFriendListSubModel;
@interface QXRoomBestFriendModel : NSObject
@property (nonatomic,strong)QXUserCpInfoModel *cp;
@property (nonatomic,strong)NSArray<QXRoomBestFriendListModel*> *no_cp;
@end
@interface QXRoomBestFriendListModel : NSObject
@property (nonatomic,strong)NSString *relation_name;
@property (nonatomic,strong)NSArray <QXRelationshipListModel*>*relation_list;
@end
NS_ASSUME_NONNULL_END