import { Expose } from 'class-transformer'; export class WordResponseDTO { constructor(partial: Partial) { Object.assign(this, partial); } @Expose() id: number; @Expose() value: string; @Expose() ownerId: string; @Expose() enabled: boolean; }