feat(interface): extend IUserData properties

This commit enriches the IUserData interface by adding a series of new properties for a more comprehensive representation of a user. These additional properties include id, firstName, lastName, pseudo, email, roleId, isActive, city, dollarAvailables, age, created_at, and updated_at.
This commit is contained in:
Mathis H (Avnyr) 2024-06-11 16:07:59 +02:00
parent 882729ffc9
commit 950cb9137f
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -1,3 +1,14 @@
export interface IUserData { export interface IUserData {
name: string id: string;
firstName: string;
lastName: string;
pseudo: string;
email: string;
roleId: string;
isActive: boolean;
city: string;
dollarAvailables: number;
age: number;
created_at: string;
updated_at: string;
} }