DailyTaskCell.h
439 字节
//
// DailyTaskCell.h
// DreamSleep
//
// Created by peter on 2022/6/7.
//
#import <UIKit/UIKit.h>
#import "ScoreTaskRequestModel.h"
NS_ASSUME_NONNULL_BEGIN
/// 每日任务、新手任务cell
@interface DailyTaskCell : UITableViewCell
- (instancetype)initWithReuseIdentifier:(NSString *)reuseIdentifier indexPath:(NSIndexPath *)indexPath;
- (void)updateSignView:(ScoreTaskRequestModel *)requestModel;
@end
NS_ASSUME_NONNULL_END