Untitled
Anonymous
plain_text
10/04/2024 2:57 PM
388 B
19
Indexable
export class UserProfileResponseDto {
id: number;
username: string;
...
createdAt: string;
constructor(user: User) {
const {id, username, ...., createdAt} = user;
this.id = id;
this.username = username;
.....
this.createdAt = createdAt.toISOString();
}
}Editor is loading...
Leave a Comment