export class PlayerResponseDTO { constructor(partial: Partial) { 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; }