ChatHistoryController.h 448 B

12345678910111213141516171819202122
  1. //
  2. // ChatHistoryController.h
  3. // AIIM
  4. //
  5. // Created by gan on 2025/5/2.
  6. //
  7. #ifndef ChatHistoryController_h
  8. #define ChatHistoryController_h
  9. #endif /* ChatHistoryController_h */
  10. #import <UIKit/UIKit.h>
  11. @interface ChatHistoryController : UIViewController
  12. @property (nonatomic,strong) NSString *chatId;
  13. @property (nonatomic,strong) NSString *titlename;
  14. @property (nonatomic,strong) NSString *avatar;
  15. @property (nonatomic) NSInteger type;
  16. @end