Files
peko-ios/YuMi/Modules/YMRoom/View/SendRedPacket/Presenter/XPRoomRedPacketPresenter.h
2023-10-24 19:01:30 +08:00

33 lines
831 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// YMRoomRedPacketPresenter.h
// YUMI
//
// Created by YUMI on 2022/8/31.
//
#import "BaseMvpPresenter.h"
NS_ASSUME_NONNULL_BEGIN
@interface XPRoomRedPacketPresenter : BaseMvpPresenter
/// 获取钱包信息
- (void)getUserWalletInfo;
///获取当前用户信息
- (void)getUserModel;
/// 发送红包
/// @param num 红包数量
/// @param goldNum 钻石数量
/// @param roomUid 房间uid
/// @param type 类型 1房间 2全服
/// @param pwd 密码
/// @param message 消息
/// @param kind 红包种类 0 旧版本 1 无门槛红包 2 关注红包 3 分享红包 4 弹幕红包
- (void)sendRedPacketWithNum:(NSString *)num goldNum:(NSString *)goldNum roomUid:(NSString *)roomUid type:(NSString *)type password:(NSString *)pwd message:(NSString *)message kind:(NSString *)kind;
@end
NS_ASSUME_NONNULL_END