| 1234567891011121314151617181920 |
- //
- // ChatQuoteView.h
- // AIIM
- //
- // Created by qitewei on 2025/5/26.
- //
- #import <UIKit/UIKit.h>
- #import "ChatMessageModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ChatQuoteView : UIView
- @property (nonatomic, strong) UILabel * quoteContentLbl;
- @property (nonatomic, strong) UIButton * closeBtn;
- @property (nonatomic, strong) ChatMessageModel * model;
- @end
- NS_ASSUME_NONNULL_END
|