37 lines
1.2 KiB
Objective-C
37 lines
1.2 KiB
Objective-C
//
|
|
// XPRoomViewController.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/11.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPRoomBackContainerView,XPRoomInfoContainerView,XPRoomMessageContainerView,XPRoomMenuContainerView,XPRoomActivityContainerView, XPRoomPositionContainView, RoomInfoModel, UserInfoModel, SocialStageView;
|
|
@interface XPRoomViewController : MvpViewController
|
|
|
|
///房间的Uid
|
|
@property (nonatomic,copy) NSString * roomUid;
|
|
|
|
///背景
|
|
@property (nonatomic,strong, readonly) XPRoomBackContainerView *backContainerView;
|
|
///房间信息
|
|
@property (nonatomic,strong, readonly) XPRoomInfoContainerView *roomInfoContainerView;
|
|
///坑位信息
|
|
@property (nonatomic,strong, readonly) SocialStageView *stageView;
|
|
///公屏
|
|
@property (nonatomic,strong, readonly) XPRoomMessageContainerView *messageContainerView;
|
|
///底部操作栏
|
|
@property (nonatomic,strong, readonly) XPRoomMenuContainerView *menuContainerView;
|
|
///活动
|
|
@property (nonatomic,strong, readonly) XPRoomActivityContainerView *activityContainerView;
|
|
///房间信息
|
|
@property (nonatomic,strong, readonly) RoomInfoModel *roomInfo;
|
|
///用户信息
|
|
@property (nonatomic,strong, readonly) UserInfoModel *userInfo;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|