ChatAtMemberCell.h 471 B

123456789101112131415161718192021
  1. //
  2. // ChatAtMemberCell.h
  3. // AIIM
  4. //
  5. // Created by qitewei on 2025/5/29.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ChatAtMemberCell : UITableViewCell
  10. @property (nonatomic, strong) UIImageView * avatar;
  11. @property (nonatomic, strong) UILabel * nickNameLbl;
  12. @property (nonatomic, strong) UIButton * selectedStateBtn;
  13. @property (nonatomic, copy) NSDictionary * memberDict;
  14. @property (nonatomic, assign) BOOL isBatchMode;
  15. @end
  16. NS_ASSUME_NONNULL_END