25 lines
461 B
C
25 lines
461 B
C
|
|
//
|
||
|
|
// LMSendSpecialGiftView.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by Xmac on 2024/8/29.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "RCMicRoomViewModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface LMSendSpecialGiftView : UIView
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSString *rid;
|
||
|
|
@property (nonatomic, strong) NSString *close_uid;
|
||
|
|
@property (nonatomic, strong) RCMicRoomViewModel *viewModel;
|
||
|
|
|
||
|
|
- (void)sheetViewforViewAppear;
|
||
|
|
- (void)sheetViewforViewClose;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|