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