20 lines
437 B
Objective-C
20 lines
437 B
Objective-C
//
|
|
// RoomMoreManagementView.h
|
|
// DingDangApp
|
|
//
|
|
// Created by apple on 2023/5/28.
|
|
//
|
|
|
|
#import "RoomPopView.h"
|
|
@class RoomSetModel;
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomMoreManagementView : RoomPopView
|
|
@property (nonatomic,strong) WLBaseCollectionView *collectionView;
|
|
@property (nonatomic,strong) NSMutableArray *dataSource;
|
|
@property(copy, nonatomic) void (^backSelectSetModel)(RoomSetModel *model);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|