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
+14
View File
@@ -0,0 +1,14 @@
export class PlayerResponseDTO {
constructor(partial: Partial<PlayerResponseDTO>) {
this.score = partial.score;
this.userId = partial.userId;
this.id = partial.id;
this.hasGuessed = partial.hasGuessed;
// this.user = new UserResponseDTO(partial.user);
}
id: number;
userId: string;
score: number;
hasGuessed: boolean;
}