// // XPGameOrdersListTableViewCell.h // YuMi // // Created by P on 2024/7/9. // #import @class XPMineGameOrderRecoredModel; NS_ASSUME_NONNULL_BEGIN @interface XPGameOrdersListTableViewCell : UITableViewCell @property (nonatomic, strong) XPMineGameOrderRecoredModel *model; @property (nonatomic, assign) NSInteger type; // 0 = 我發起的 @property (nonatomic, copy) void(^didTapChat)(XPMineGameOrderRecoredModel *model, NSInteger type); @property (nonatomic, copy) void(^didTapPlayAgain)(XPMineGameOrderRecoredModel *model); @end NS_ASSUME_NONNULL_END