更换项目

This commit is contained in:
liyuhua
2023-07-14 18:50:55 +08:00
parent fff67e0aee
commit fc0480ea2c
9340 changed files with 236665 additions and 221827 deletions

View File

@@ -0,0 +1,55 @@
//
// HomePlayRoomModel.h
// YUMI
//
// Created by YUMI on 2022/2/25.
//
#import <Foundation/Foundation.h>
#import "YUMINNNN.h"
#import "HomeBannerInfoModel.h"
NS_ASSUME_NONNULL_BEGIN
@class HomePlayMicUserModel;
@interface HomePlayRoomModel : NSObject
///头像
@property (nonatomic, copy) NSString *avatar;
///是否在跨房PK中
@property (nonatomic, assign) BOOL crossPking;
///平台号
@property(nonatomic, copy) NSString *erbanNo;
///是否有列表中的banner
@property (nonatomic, assign) BOOL isBanner;
///小游戏ID
@property(nonatomic, copy) NSString *mgId;
///小游戏名称
@property(nonatomic, copy) NSString *mgName;
///麦上用户
@property (nonatomic, strong) NSArray<HomePlayMicUserModel *> *micUsers;
///在线人数
@property (nonatomic, assign) NSInteger onlineNum;
///标签图片地址
@property (nonatomic, strong) NSString *tagPict;
///房间标题
@property (nonatomic, copy) NSString *title;
///房主的uid
@property (nonatomic,copy) NSString *uid;
///列表中的banner信息
@property (nonatomic, strong) NSArray<HomeBannerInfoModel *> *bannerVoList;
///房间开黑广播
@property (nonatomic, copy) NSString *broadMsg;
///性别
@property (nonatomic,assign) GenderType gender;
@end
@interface HomePlayMicUserModel : NSObject
///头像
@property (nonatomic, copy) NSString *avatar;
///性别
@property (nonatomic,assign) GenderType gender;
///姓名
@property (nonatomic,copy) NSString *nick;
///用户的uid
@property (nonatomic,copy) NSString *uid;
@end
NS_ASSUME_NONNULL_END