SleepReadyDoneView.h 617 字节
//
//  SleepReadyDoneView.h
//  DreamSleep
//
//  Created by peter on 2022/7/18.
//

#import <UIKit/UIKit.h>
#import "SRFinishModel.h"

NS_ASSUME_NONNULL_BEGIN

@protocol SleepReadyDoneViewDelegate <NSObject>
/// 根据type进入不同的模块
/// @param type type
- (void)enterDiffModule:(SRFinishAlertType)type;
@end

/// 睡前准备任务完成后提示框
@interface SleepReadyDoneView : UIView

@property (nonatomic, weak) id<SleepReadyDoneViewDelegate> delegate;

@property (nonatomic, strong) SRFinishModel *finishModel;

- (void)showSleepReadyFinishView:(SRFinishModel *)model;

@end

NS_ASSUME_NONNULL_END