21 lines
393 B
Objective-C
21 lines
393 B
Objective-C
//
|
|
// YMMineSettingTableViewCell.h
|
|
// YUMI
|
|
//
|
|
// Created by YUMI on 2021/9/17.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class XPMineSettingItemModel;
|
|
@interface XPMineSettingTableViewCell : UITableViewCell
|
|
///数据源
|
|
@property (nonatomic,strong) XPMineSettingItemModel *itemModel;
|
|
|
|
- (void)setTopCorner:(BOOL)setTop bottomCorner:(BOOL)setBottom;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|