Files
yinmeng-ios/xplan-ios/Main/Room/View/SendRedPacket/XPReceiveRedPacketView.h

27 lines
556 B
Objective-C

//
// XPReceiveRedPacketView.h
// xplan-ios
//
// Created by GreenLand on 2022/9/2.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPReceiveRedPacketModel, XPRedPacketModel;
@interface XPReceiveRedPacketView : UIView
///是否在全服红包的房间内
@property (nonatomic, assign) BOOL inAllPacketRoom;
///红包信息
@property (nonatomic, strong) XPReceiveRedPacketModel *redPacketModel;
@property (nonatomic, strong) XPRedPacketModel *receiveModel;
//@property (nonatomic, strong) NSDictionary *dict;
@end
NS_ASSUME_NONNULL_END