Files
featherVoice/TUIKit/TUIContact/BaseCell/CellUI/TUIFindContactCell.h
2025-08-08 10:49:36 +08:00

26 lines
573 B
Objective-C

//
// TUIFindContactCell.h
// TUIContact
//
// Created by harvy on 2021/12/13.
// Copyright © 2023 Tencent. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TUIFindContactCellModel.h"
NS_ASSUME_NONNULL_BEGIN
@interface TUIFindContactCell : UITableViewCell
@property(nonatomic, strong) UIImageView *avatarView;
@property(nonatomic, strong) UILabel *mainTitleLabel;
@property(nonatomic, strong) UILabel *subTitleLabel;
@property(nonatomic, strong) UILabel *descLabel;
@property(nonatomic, strong) TUIFindContactCellModel *data;
@end
NS_ASSUME_NONNULL_END