12345678910111213141516171819 |
- //
- // CYGroupSendHelperCell.h
- // shiku_im
- //
- // Created by JayLuo on 2019/12/13.
- // Copyright © 2019 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JXLabelObject.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CYGroupSendHelperCell : UITableViewCell
- @property(nonatomic, copy) void (^resendClickCallback)(JXLabelObject *model);
- @property(nonatomic, strong) JXLabelObject *model;
- @end
- NS_ASSUME_NONNULL_END
|