Commit 7af6094f by G

types related to the user informations queries

parent 37b82a60
......@@ -12,4 +12,24 @@ export interface IpaginatedResponse<T> {
next : string | null,
previous : string | null,
results : T
}
\ No newline at end of file
}
export interface ImerchandInformations {
marchandId: string;
nom: string;
code: string;
adresse: string;
urlSuccess: string;
urlEchec: string;
entreprise: number;
user: number;
}
export interface IuserInformations {
username: string;
email: string;
firstName: string;
lastName: string;
marchand: ImerchandInformations;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment