Files
events/dto/userresponse.dto.ts
T

11 lines
176 B
TypeScript

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