Files
events/dto/userresponse.dto.ts
T
2025-05-06 14:36:52 +02:00

13 lines
231 B
TypeScript

export class UserResponseDTO {
constructor(partial: UserResponseDTO) {
this.id = partial.id;
this.username = partial.username;
this.avatar = partial.avatar;
}
id: string;
username: string;
avatar: string;
}