36 lines
778 B
Objective-C
36 lines
778 B
Objective-C
//
|
|
// 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
|