Sin descripción

FKPersonOrderSummaryCell.h 623B

12345678910111213141516171819202122
  1. //
  2. // FKPersonOrderSummaryCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 16/2/23.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKPersonOrderCellDelegate.h"
  10. @interface FKPersonOrderSummaryCell : UITableViewCell
  11. <FKPersonOrderCellDelegate>
  12. @property (nonatomic, strong) UIButton *paymentButton;
  13. @property (nonatomic, strong) UIButton *cancelButton;
  14. @property (nonatomic, strong) UIButton *deleteButton;
  15. @property (nonatomic, strong) UIButton *uploadIDCardButton;
  16. @property (nonatomic, strong) UIButton *shareButton;
  17. @end