Untitled
unknown
plain_text
a year ago
289 B
7
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