22 lines
386 B
Objective-C
22 lines
386 B
Objective-C
//
|
|
// YMRoomSendRedPacketViewController.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2022/8/31.
|
|
//
|
|
|
|
#import "MvpViewController.h"
|
|
#import "RoomHostDelegate.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomSendRedPacketViewController : MvpViewController
|
|
|
|
- (instancetype)initWithDelegate:(id<RoomHostDelegate>)delegate;
|
|
|
|
@property (nonatomic, copy) NSString *roomUid;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|