18 lines
343 B
C
18 lines
343 B
C
|
|
//
|
||
|
|
// TUIChatBotStreamTextCell.h
|
||
|
|
// TUICustomerServicePlugin
|
||
|
|
//
|
||
|
|
// Created by lynx on 2023/10/30.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <TUIChat/TUITextMessageCell.h>
|
||
|
|
#import "TUIBotStreamTextCellData.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface TUIBotStreamTextCell : TUITextMessageCell
|
||
|
|
- (void)fillWithData:(TUIBotStreamTextCellData *)data;
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|