Files
midi_ios/TUIKit/TUIContact/BaseCell/CellUI/TUIFindContactCell.h

26 lines
573 B
C
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// 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