17 lines
323 B
Objective-C
17 lines
323 B
Objective-C
//
|
|
// XPMonentsCommentTableViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/6/22.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class MonentsCommentModel;
|
|
@interface XPMonentsCommentTableViewCell : UITableViewCell
|
|
@property (nonatomic,strong) MonentsCommentModel *commentInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|