ChatQuoteView.h 382 B

1234567891011121314151617181920
  1. //
  2. // ChatQuoteView.h
  3. // AIIM
  4. //
  5. // Created by qitewei on 2025/5/26.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ChatMessageModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ChatQuoteView : UIView
  11. @property (nonatomic, strong) UILabel * quoteContentLbl;
  12. @property (nonatomic, strong) UIButton * closeBtn;
  13. @property (nonatomic, strong) ChatMessageModel * model;
  14. @end
  15. NS_ASSUME_NONNULL_END