Initial commit

This commit is contained in:
2025-05-06 12:42:05 +00:00
commit 287f7e2a3d
12 changed files with 294 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
export class UserResponseDTO {
constructor(partial: Partial<UserResponseDTO>) {
this.id = partial.id;
this.username = partial.username;
this.avatar = partial.avatar;
}
id: string;
username: string;
avatar: string;
}