1234567891011121314151617181920212223242526272829303132 |
- //
- // YOUPAIHRChatRoomSubGiftVC.h
- // VQU
- //
- // Created by xiaohaoran on 2021/10/29.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "ZCBaseVC.h"
- #import "JXCategoryListContainerView.h"
- #import "YOUPAILCGiftModel.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^JumToWalletBlock) (void);
- @protocol GiftSenderDelegate <NSObject>
- -(void)youpaifDidSenderGiftWith:(YOUPAILCGiftModel*)model Count:(NSInteger)count CategoryID:(NSString*)categoryid;
- @end
- @interface YOUPAIHRChatRoomSubGiftVC : ZCBaseVC<JXCategoryListContentViewDelegate>
- /* id */
- @property (copy, nonatomic) NSString *youpaipID;
- @property (weak, nonatomic) id<GiftSenderDelegate> Giftdelegate;
- @property (nonatomic,assign) BOOL youpaipisAnchor; // 是不是女神
- /* 是否显示悄悄送礼 */
- @property (assign, nonatomic) NSInteger youpaipsend_gift_hide;
- @property(nonatomic,copy)JumToWalletBlock youpaipjumToWalletBlock;
- @end
- NS_ASSUME_NONNULL_END
|