30 lines
765 B
Objective-C
30 lines
765 B
Objective-C
//
|
|
// HomeMineRoomModel.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/6/20.
|
|
//
|
|
|
|
#import "PIBaseModel.h"
|
|
#import "HomePlayRoomModel.h"
|
|
#import "YUMINNNN.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface HomeMineRoomModel : PIBaseModel
|
|
|
|
@property (nonatomic, copy) NSString *avatar;
|
|
@property (nonatomic, copy) NSString *introduction;
|
|
@property (nonatomic, assign) NSInteger roomId;
|
|
@property (nonatomic, assign) NSInteger uid;
|
|
@property (nonatomic, copy) NSString *title;
|
|
@property (nonatomic, assign) NSInteger onlineNum;
|
|
@property (nonatomic, assign) NSInteger micUserCount;
|
|
@property (nonatomic, assign) NSInteger partitionId;
|
|
@property (nonatomic, assign) NSString *roomDesc;
|
|
@property (nonatomic, strong) NSArray<HomePlayMicUserModel *> *micUsers;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|