Untitled

 avatar
unknown
plain_text
9 months ago
289 B
3
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