Files
peko-ios/YuMi/Modules/YMRoom/View/SendRedPacket/XPReceiveRedPacketView.h
2023-10-31 11:09:04 +08:00

34 lines
640 B
Objective-C

//
// YMReceiveRedPacketView.h
// YUMI
//
// Created by YUMI on 2022/9/2.
//
#import <UIKit/UIKit.h>
#import "XPRedPacketModel.h"
@protocol XPReceiveRedPacketViewDelegate <NSObject>
-(void)closeViewAction;
@end
NS_ASSUME_NONNULL_BEGIN
@class XPReceiveRedPacketModel, XPRedPacketModel;
@interface XPReceiveRedPacketView : UIView
///是否在全服红包的房间内
@property (nonatomic, assign) BOOL inAllPacketRoom;
@property(nonatomic,weak) id<XPReceiveRedPacketViewDelegate>delegate;
@property (nonatomic, strong) XPRedPacketModel *receiveModel;
@property (nonatomic, strong) UIView *alphaView;
@end
NS_ASSUME_NONNULL_END