MyWalletDetailListCell.h 484 B

12345678910111213141516171819
  1. //
  2. // MyWalletDetailListCell.h
  3. // model
  4. //
  5. // Created by 杨键 on 2018/8/3.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface MyWalletDetailListCell : UITableViewCell
  10. @property (nonatomic, strong) UIImageView *iconImageView;
  11. @property (nonatomic, strong) UILabel *titleLabel;
  12. @property (nonatomic, strong) UILabel *timeLabel;
  13. @property (nonatomic, strong) UILabel *amountLabel;
  14. @property (nonatomic, strong) UIImageView *lineView;
  15. @end