Files
webapp-dto/dto/playerresponse.dto.ts
T

13 lines
276 B
TypeScript

import { UserResponseDTO } from './userresponse.dto';
export class PlayerResponseDTO {
constructor(partial: Partial<PlayerResponseDTO>) {
Object.assign(this, partial);
this.user = new UserResponseDTO(partial.user);
}
user: UserResponseDTO;
score: number;
}