This commit is contained in:
2026-01-28 18:58:30 +08:00
parent 93a20cd92a
commit 66d85f78a0
8 changed files with 310 additions and 8 deletions

View File

@@ -0,0 +1,35 @@
//
// KBChatSessionResetModel.h
// keyBoard
//
// Created by Mac on 2026/1/28.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/// 重置会话响应数据
@interface KBChatSessionResetData : NSObject
/// 会话 ID
@property (nonatomic, assign) NSInteger sessionId;
/// AI 角色 ID
@property (nonatomic, assign) NSInteger companionId;
/// 重置版本号
@property (nonatomic, assign) NSInteger resetVersion;
/// 创建时间
@property (nonatomic, copy) NSString *createdAt;
@end
/// 重置会话响应
@interface KBChatSessionResetResponse : NSObject
@property (nonatomic, assign) NSInteger code;
@property (nonatomic, strong, nullable) KBChatSessionResetData *data;
@property (nonatomic, copy, nullable) NSString *message;
@end
NS_ASSUME_NONNULL_END