refactore get user on chat

This commit is contained in:
Eudes Inácio
2024-06-05 11:57:19 +01:00
parent 5b72ff933b
commit eb3c409c4c
2 changed files with 43 additions and 21 deletions
@@ -11,11 +11,16 @@ export interface UserContacts {
wxeMail: string | null;
userPhoto: string | null;
}
export interface UserListResult {
total: 192,
result: UserContacts[]
}
export interface UserList {
success: boolean;
message: string;
data: UserContacts[];
data: UserListResult;
}
@Injectable({