fix client to api dtos again
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 7s
Build and Deploy API / build-and-deploy (push) Successful in 9s

This commit is contained in:
2026-03-21 17:41:11 -05:00
parent fc064dd01c
commit 4fe23699c8
9 changed files with 36 additions and 20 deletions

View File

@@ -4,18 +4,18 @@
export interface User {
id: number;
name: string;
username: string;
email: string;
password: string;
}
export interface RegisterDto {
name: string;
username: string;
email: string;
password: string;
}
export interface LoginDto {
name: string;
username: string;
password: string;
}