Files
yinmeng-ios/xplan-ios/Main/Room/View/AnimationView/XPStarredKitchenGiftView.h
2023-03-21 19:22:54 +08:00

28 lines
686 B
Objective-C

//
// XPStarredKitchenGiftView.h
// xplan-ios
//
// Created by 冯硕 on 2023/2/13.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPStarredKitchenGiftView, XPStarredKitchenModel;
@protocol XPStarredKitchenGiftViewDelegate <NSObject>
- (void)xPStarredKitchenGiftView:(XPStarredKitchenGiftView *)view didClickEnter:(XPStarredKitchenModel *)model;
@end
@interface XPStarredKitchenGiftView : UIView
///代理
@property (nonatomic,weak) id<XPStarredKitchenGiftViewDelegate> delegate;
///星级厨房数据
@property (nonatomic,strong) NSDictionary *starredKitchenDic;
///是不是动态礼物
@property (nonatomic,assign) BOOL isMaxLargeGift;
@end
NS_ASSUME_NONNULL_END