YOUPAIHRGuildCenterSearchCell.h 750 B

12345678910111213141516171819202122
  1. //
  2. // YOUPAIHRGuildCenterSearchCell.h
  3. // VQU
  4. //
  5. // Created by xiaohaoran on 2021/11/4.
  6. // Copyright © 2021 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YOUPAIHRGuildCenterSearchModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void (^JoinGuildBlock)(YOUPAIHRGuildCenterSearchModel*model);
  12. @interface YOUPAIHRGuildCenterSearchCell : UITableViewCell
  13. @property(nonatomic,strong)YOUPAIHRGuildCenterSearchModel *youpaipmodel;
  14. @property(nonatomic,strong)UIImageView *youpaipiconImageView;
  15. @property(nonatomic,strong)UILabel *youpaipnickLabel;
  16. @property(nonatomic,strong)UILabel *youpaipnickIDLabel;
  17. @property(nonatomic,strong)UIButton *youpaipjoinBtn;
  18. @property(nonatomic,copy)JoinGuildBlock youpaipjoinGuildBlock;
  19. @end
  20. NS_ASSUME_NONNULL_END