Files
WTP-dto/dto/userresponse.dto.ts
T
2025-05-06 12:42:05 +00: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;
}