mirror of
https://github.com/astuto/astuto.git
synced 2026-07-11 21:09:18 +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; |