| 12345678910111213141516171819202122 |
- //
- // ChatHistoryController.h
- // AIIM
- //
- // Created by gan on 2025/5/2.
- //
- #ifndef ChatHistoryController_h
- #define ChatHistoryController_h
- #endif /* ChatHistoryController_h */
- #import <UIKit/UIKit.h>
- @interface ChatHistoryController : UIViewController
- @property (nonatomic,strong) NSString *chatId;
- @property (nonatomic,strong) NSString *titlename;
- @property (nonatomic,strong) NSString *avatar;
- @property (nonatomic) NSInteger type;
- @end
|