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:
parent
882729ffc9
commit
950cb9137f
@ -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;
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user