30 lines
541 B
Objective-C
30 lines
541 B
Objective-C
//
|
|
// YMRoomYearActivityView.h
|
|
// YUMI
|
|
//
|
|
// Created by GLEN on 2022/11/26.
|
|
// 年度活动
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "GiftReceiveInfoModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPRoomYearActivityViewDelegate <NSObject>
|
|
|
|
///点击了进入房间
|
|
- (void)xPRoomYearActivityViewEnterRoom:(NSString *)roomUid;
|
|
|
|
@end
|
|
|
|
@interface XPRoomYearActivityView : UIView
|
|
|
|
@property (nonatomic, strong) GiftReceiveInfoModel *model;
|
|
///代理
|
|
@property (nonatomic,weak) id<XPRoomYearActivityViewDelegate> delegate;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|