1
This commit is contained in:
35
keyBoard/Class/AiTalk/M/KBChatSessionResetModel.h
Normal file
35
keyBoard/Class/AiTalk/M/KBChatSessionResetModel.h
Normal 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
|
||||
Reference in New Issue
Block a user