| 123456789101112131415161718192021 |
- //
- // ChatAtMemberCell.h
- // AIIM
- //
- // Created by qitewei on 2025/5/29.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatAtMemberCell : UITableViewCell
- @property (nonatomic, strong) UIImageView * avatar;
- @property (nonatomic, strong) UILabel * nickNameLbl;
- @property (nonatomic, strong) UIButton * selectedStateBtn;
- @property (nonatomic, copy) NSDictionary * memberDict;
- @property (nonatomic, assign) BOOL isBatchMode;
- @end
- NS_ASSUME_NONNULL_END
|