mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 01:32:09 +08:00
7 lines
97 B
TypeScript
7 lines
97 B
TypeScript
export interface User {
|
|
id: string;
|
|
name: string;
|
|
description: string;
|
|
avatar: string;
|
|
}
|