12345678910111213141516171819202122 |
- //
- // YOUPAIHRGuildCenterSearchCell.h
- // VQU
- //
- // Created by xiaohaoran on 2021/11/4.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YOUPAIHRGuildCenterSearchModel.h"
- NS_ASSUME_NONNULL_BEGIN
- typedef void (^JoinGuildBlock)(YOUPAIHRGuildCenterSearchModel*model);
- @interface YOUPAIHRGuildCenterSearchCell : UITableViewCell
- @property(nonatomic,strong)YOUPAIHRGuildCenterSearchModel *youpaipmodel;
- @property(nonatomic,strong)UIImageView *youpaipiconImageView;
- @property(nonatomic,strong)UILabel *youpaipnickLabel;
- @property(nonatomic,strong)UILabel *youpaipnickIDLabel;
- @property(nonatomic,strong)UIButton *youpaipjoinBtn;
- @property(nonatomic,copy)JoinGuildBlock youpaipjoinGuildBlock;
- @end
- NS_ASSUME_NONNULL_END
|