export class UserResponseDTO { constructor(partial: Partial) { Object.assign(this, partial); } id: string; username: string; avatar: string; }