TUIGroupNoticeCell.h 512 B

123456789101112131415161718192021222324
  1. //
  2. // TUIGroupNoticeCell.h
  3. // TUIGroup
  4. //
  5. // Created by harvy on 2022/1/11.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "TUIGroupNoticeCellData.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface TUIGroupNoticeCell : UITableViewCell
  12. @property(nonatomic, strong) UILabel *nameLabel;
  13. @property(nonatomic, strong) UILabel *descLabel;
  14. @property(nonatomic, strong) UIImageView *iconView;
  15. @property(nonatomic, strong) TUIGroupNoticeCellData *cellData;
  16. @end
  17. NS_ASSUME_NONNULL_END