29 lines
528 B
Objective-C
29 lines
528 B
Objective-C
//
|
|
// XPGiftWeekStarBroadcastView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/10/8.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "GiftInfoModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPGiftWeekStarBroadcastViewDelegate <NSObject>
|
|
|
|
///点击了周星榜入口
|
|
- (void)xPGiftWeekStarBroadcastViewWeekStarClick;
|
|
|
|
@end
|
|
|
|
@interface XPGiftWeekStarBroadcastView : UIView
|
|
|
|
@property (nonatomic, weak) id<XPGiftWeekStarBroadcastViewDelegate> delegate;
|
|
|
|
@property (nonatomic, strong) GiftInfoModel *giftInfo;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|