Browser-Strutture-Musa/src/api/models/edit-password-dto.ts
2025-11-13 14:03:34 +01:00

27 lines
549 B
TypeScript

/* tslint:disable */
/* eslint-disable */
/* Code generated by ng-openapi-gen DO NOT EDIT. */
export interface EditPasswordDto {
/**
* The unique identifier for the user
*/
id: number;
/**
* The new password for the account
* The password must be at least 8 characters long, containing at least one lowercase letter, one uppercase letter, one number, and one special character
*/
password: string;
/**
* The verification token
*/
token: string;
/**
* The username of the account
*/
username: string;
}