CNBPersonalInfoCell.h
732 Bytes
//
// CNBPersonalInfoCell.h
// CNLiveBPersonalVerificationModule
//
// Created by 殷巧娟 on 2020/4/14.
//
#import <UIKit/UIKit.h>
@class CNBUserInfoModel;
@class CNBInstitutionModel;
@class CNBCirccleModel;
NS_ASSUME_NONNULL_BEGIN
//身份证展示cell
@interface CNBPersonalInfoCell : UITableViewCell
@property (nonatomic, strong) CNBUserInfoModel *infoModel;
@property (nonatomic, copy) void (^tapImageVBlock)();
@end
//机构圈子展示cell
@interface CNBInstitutionsInfoCell : UITableViewCell
@property (nonatomic, strong) CNBInstitutionModel *institutionModel;
@end
//群组展示cell
@interface CNBGroupInfoCell : UITableViewCell
@property (nonatomic, strong) CNBCirccleModel *circleModel;
@end
NS_ASSUME_NONNULL_END