mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-09-27 18:15:49 +08:00
12 lines
212 B
TypeScript
12 lines
212 B
TypeScript
import { Id, Timestamp } from ".";
|
|
|
|
export interface Conversation {
|
|
id: string;
|
|
connectionId?: Id;
|
|
databaseName?: string;
|
|
tableName?: string;
|
|
assistantId: Id;
|
|
title: string;
|
|
createdAt: Timestamp;
|
|
}
|