PBChatRoomViewController.h 476 B

1234567891011121314151617181920212223
  1. //
  2. // PBChatRoomViewController.h
  3. // PBSDK_Example
  4. //
  5. // Created by hello on 2024/12/25.
  6. // Copyright © 2024 uxiume. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PBRoomModel.h"
  10. #import "PBVideoModel.h"
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface PBChatRoomViewController : UIViewController
  13. @property(nonatomic,strong)PBRoomModel*model;
  14. @property(nonatomic,strong)PBVideoModel*videoModel;
  15. @property(nonatomic,assign)BOOL needWaitAnchor;
  16. @end
  17. NS_ASSUME_NONNULL_END