4 lines
163 B
TypeScript
4 lines
163 B
TypeScript
import { OmitType } from '@nestjs/mapped-types';
|
|
import { Event } from '../../entity/event.entity';
|
|
|
|
export class CreateEventDto extends OmitType(Event, ['id']) {} |