1234567891011121314151617181920 |
- //
- // PBChatRoomPublishView.h
- // Pods
- //
- // Created by LStar on 2025/1/14.
- //
- #import <UIKit/UIKit.h>
- #import <JXCategoryView/JXCategoryListContainerView.h>
- #import "PBRoomModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface PBChatRoomPublishView : UIView<JXCategoryListContentViewDelegate>
- ///房间的模型
- @property (nonatomic,strong)PBRoomModel *model;
- @end
- NS_ASSUME_NONNULL_END
|