17 lines
343 B
Objective-C
17 lines
343 B
Objective-C
//
|
|
// XPMonentsInteractiveTableViewCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/5/19.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class MonentsInteractiveModel;
|
|
@interface XPMonentsInteractiveTableViewCell : UITableViewCell
|
|
@property (nonatomic,strong) MonentsInteractiveModel *interactiveInfo;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|