export class DTO { public constructor(properties: T) { Object.keys(properties).forEach((key: string) => { (this as any)[key] = properties[key]; }); } }