Actualización módulo auth, implementación del método de cambio de contraseña

This commit is contained in:
2026-07-10 17:18:33 +00:00
parent 65047dee90
commit ed6f4e3441
6 changed files with 201 additions and 42 deletions

View File

@ -0,0 +1,7 @@
export interface IChangePassword {
currentPassword: string;
newPassword: string;
}