20 lines
363 B
Objective-C
20 lines
363 B
Objective-C
//
|
|
// PIRoomSendRedPacketVC.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/10/18.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import "RoomHostDelegate.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PIRoomSendRedPacketVC : MvpViewController
|
|
@property (nonatomic, copy) NSString *roomUid;
|
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|