mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 01:32:09 +08:00
11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
import { Id, Timestamp } from "./";
|
|
|
|
export interface Chat {
|
|
id: string;
|
|
connectionId?: Id;
|
|
databaseName?: string;
|
|
assistantId: Id;
|
|
title: string;
|
|
createdAt: Timestamp;
|
|
}
|