28 lines
686 B
Objective-C
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
|