21 lines
275 B
Objective-C
21 lines
275 B
Objective-C
//
|
|
// RoomBoomEntryView.h
|
|
// YuMi
|
|
//
|
|
// Created by P on 2024/10/8.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class BoomDetailModel;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface RoomBoomEntryView : UIView
|
|
|
|
@property (nonatomic, strong) BoomDetailModel *boomModel;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|