Files
webapp-dto/dto/userresponse.dto.ts
2024-12-30 00:39:06 +01:00

13 lines
240 B
TypeScript

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;
}