mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 17:53:21 +08:00
14 lines
206 B
TypeScript
14 lines
206 B
TypeScript
export enum UserRole {
|
|
System = "system",
|
|
User = "user",
|
|
Assistant = "assistant",
|
|
}
|
|
|
|
export interface User {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
avatar: string;
|
|
role: UserRole;
|
|
}
|