Files
peko-ios/YuMi/Modules/YMMine/View/Cell/XPMineNotificationTableViewCell.h
2023-07-14 18:50:55 +08:00

26 lines
644 B
Objective-C

//
// YMMineNotificationTableViewCell.h
// YUMI
//
// Created by YUMI on 2021/9/17.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPMineNotificationTableViewCell, XPMineNotificationItemModel;
@protocol XPMineNotificationTableViewCellDelegate <NSObject>
///开关
- (void)xPMineNotificationTableViewCell:(XPMineNotificationTableViewCell *)cell switchStatus:(BOOL)status;
@end
@interface XPMineNotificationTableViewCell : UITableViewCell
/** */
@property (nonatomic,weak) id<XPMineNotificationTableViewCellDelegate> delegate;
///
@property (nonatomic,strong) XPMineNotificationItemModel *itemModel;
@end
NS_ASSUME_NONNULL_END