Files
yinmeng-ios/xplan-ios/Main/Room/View/XPRoomViewController.h
2021-10-19 20:01:11 +08:00

38 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;
@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) XPRoomPositionContainView *positionContainerView;
///公屏
@property (nonatomic,strong, readonly) XPRoomMessageContainerView *messageContainerView;
///底部操作栏
@property (nonatomic,strong, readonly) XPRoomMenuContainerView *menuContainerView;
///活动
@property (nonatomic,strong, readonly) XPRoomActivityContainerView *activityContainerView;
///房间信息
@property (nonatomic,strong, readonly) RoomInfoModel *roomInfo;
///dismissVC
- (void)disMissRoomVC;
@end
NS_ASSUME_NONNULL_END