mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
|
|
interface IUserJSON {
|
||
|
|
id: number;
|
||
|
|
email: string;
|
||
|
|
full_name: string;
|
||
|
|
role: string;
|
||
|
|
status: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default IUserJSON;
|