20 lines
327 B
Objective-C
20 lines
327 B
Objective-C
//
|
|
// XPMineFootPrintTableViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/7/26.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "XPMineFootPrintModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPMineFootPrintTableViewCell : UITableViewCell
|
|
|
|
@property (nonatomic, strong) XPMineFootPrintModel *item;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|