mirror of
https://github.com/astuto/astuto.git
synced 2026-09-03 04:30:20 +02:00
10 lines
159 B
TypeScript
10 lines
159 B
TypeScript
interface IUserJSON {
|
|
id: number;
|
|
email: string;
|
|
full_name: string;
|
|
avatar_url?: string;
|
|
role: string;
|
|
status: string;
|
|
}
|
|
|
|
export default IUserJSON; |