Files
web-app-template/frontend/login-counter/src/app/models/auth/reset-password.dto.ts

6 lines
123 B
TypeScript

import { AuthUserDTO } from "./auth-user.dto";
export interface ResetPasswordDTO {
id: string;
password: string;
}