20 lines
366 B
Objective-C
20 lines
366 B
Objective-C
//
|
|
// QXRoomSongListView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/6/9.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXRoomSongListView : UIView
|
|
@property (nonatomic,assign)BOOL isBgMusic;
|
|
@property (nonatomic,assign)BOOL isCompere;
|
|
@property (nonatomic,strong)NSString *roomId;
|
|
-(void)showInView:(UIView *)view;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|